-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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": "async-co",
"version": "1.7.2",
"description": "Control flow for co with async.js (v2) signatures",
"main": "index.js",
"scripts": {
"mocha": "node node_modules/mocha/bin/_mocha -r mocha-plugin-co",
"test": "node node_modules/istanbul/lib/cli.js cover --report text-summary --report html --report lcov node_modules/mocha/bin/_mocha -- -r mocha-plugin-co",
"coveralls": "npm install coveralls && node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info"
},
"keywords": [
"async",
"co",
"await",
"ES6 generators",
"yield",
"throttle",
"pool",
"concurrency",
"promise",
"promises",
"queue",
"deferred",
"map",
"Let's have a beer and talk in Paris"
],
"author": "Francois Leurent <131.js@cloudyks.org>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"expect.js": "^0.3.1",
"istanbul": "^0.3.20",
"mocha": "^3.1.2",
"mocha-plugin-co": "^1.0.0",
"mout": "^1.0.0",
"nyks": "^3.1.1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/131/async-co.git"
},
"bugs": {
"url": "https://github.com/131/async-co/issues"
},
"homepage": "https://github.com/131/async-co#readme"
}