-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
85 lines (85 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "es6-promise-pool",
"version": "2.5.0",
"description": "Runs Promises in a pool that limits their concurrency.",
"author": {
"name": "Tim De Pauw",
"url": "https://tmdpw.eu"
},
"main": "es6-promise-pool.js",
"keywords": [
"promise",
"promises",
"promises-a",
"promises-aplus",
"future",
"futures",
"deferred",
"deferreds",
"generator",
"generators",
"async",
"await",
"flow control",
"pool",
"queue",
"throttle",
"es6",
"browser",
"node"
],
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"console-stamp": "^0.2.5",
"coveralls": "^2.13.0",
"dirty-chai": "^1.2.2",
"es6-promise": "^4.1.0",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.2.0",
"standard": "^10.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "npm run test:lint && npm run test:node && npm run test:browser",
"test:lint": "standard",
"test:node": "nyc mocha test.js",
"test:browser": "karma start",
"test:ci": "npm run test:ci:node && npm run test:browser && npm run test:ci:report",
"test:ci:node": "nyc mocha --reporter mocha-junit-reporter test.js",
"test:ci:report": "nyc report --reporter text-lcov | coveralls"
},
"files": [
"es6-promise-pool.js"
],
"repository": "timdp/es6-promise-pool",
"bugs": "https://github.com/timdp/es6-promise-pool/issues",
"license": "MIT",
"standard": {
"ignore": [
"bower_components/**"
],
"globals": [
"define",
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"chai",
"chaiAsPromised"
]
}
}