time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

package.json (810B)


      1 {
      2 	"name": "is-stream",
      3 	"version": "3.0.0",
      4 	"description": "Check if something is a Node.js stream",
      5 	"license": "MIT",
      6 	"repository": "sindresorhus/is-stream",
      7 	"funding": "https://github.com/sponsors/sindresorhus",
      8 	"author": {
      9 		"name": "Sindre Sorhus",
     10 		"email": "sindresorhus@gmail.com",
     11 		"url": "https://sindresorhus.com"
     12 	},
     13 	"type": "module",
     14 	"exports": "./index.js",
     15 	"engines": {
     16 		"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
     17 	},
     18 	"scripts": {
     19 		"test": "xo && ava && tsd"
     20 	},
     21 	"files": [
     22 		"index.js",
     23 		"index.d.ts"
     24 	],
     25 	"keywords": [
     26 		"stream",
     27 		"type",
     28 		"streams",
     29 		"writable",
     30 		"readable",
     31 		"duplex",
     32 		"transform",
     33 		"check",
     34 		"detect",
     35 		"is"
     36 	],
     37 	"devDependencies": {
     38 		"@types/node": "^16.4.13",
     39 		"ava": "^3.15.0",
     40 		"tempy": "^1.0.1",
     41 		"tsd": "^0.17.0",
     42 		"xo": "^0.44.0"
     43 	}
     44 }