-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "cwait",
"version": "1.1.2",
"description": "Limit number of promises running in parallel",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"tsc": "tsc",
"rollup": "rollup",
"prepublish": "(checkver ge 5.0.0 && tsc -m es6 --outdir dist/esm -p src && rollup -c) || tsc -p src",
"test": "tsc -p test && node test/test.js"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charto/cwait.git"
},
"bugs": {
"url": "https://github.com/charto/cwait/issues"
},
"homepage": "https://github.com/charto/cwait#readme",
"keywords": [
"promise",
"concurrent",
"concurrency",
"parallel",
"timeout",
"delay",
"wait",
"queue"
],
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/node": "^10.12.1",
"autoroll": "0.1.0",
"bluebird": "^3.5.2",
"rollup": "^0.66.6",
"typescript": "^3.1.4"
},
"dependencies": {
"cdata": "^0.1.1"
}
}