-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "streaming-iterables",
"version": "4.1.0",
"description": "A collection of utilities for async iterables. Designed to replace your streams.",
"main": "dist/index.js",
"module": "dist/index-esm.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:reconbot/streaming-iterables.git",
"homepage": "https://github.com/reconbot/streaming-iterables",
"runkitExampleFilename": "example.js",
"scripts": {
"test": "npm run unit-test && npm run lint",
"unit-test": "mocha --opts lib/mocha.opts",
"lint": "tsc && tslint lib/*.ts",
"format": "tslint lib/*.ts --fix",
"build": "tsc -p tsconfig-build.json && rollup -c rollup.config-esm.js && rollup -c rollup.config-umd.js && node bundle-types.js",
"prepare": "npm run build"
},
"keywords": [
"async",
"generators",
"async generators",
"async iterables",
"iterators",
"async iterators",
"promise",
"stream",
"fp",
"transform",
"generator functions",
"async generator functions",
"bluestream",
"ramda"
],
"author": "reconbot",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@microsoft/api-extractor": "^6.3.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.4",
"benchmark": "^2.1.4",
"bluestream": "^10.3.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.15.2",
"rollup": "^1.4.1",
"rollup-plugin-node-resolve": "^4.0.1",
"through2-concurrent": "^2.0.0",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333"
},
"engines": {
"node": ">=8"
}
}