-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "fastfall",
"version": "1.5.1",
"description": "call your callbacks in a waterfall, at speed",
"main": "fall.js",
"scripts": {
"lint": "standard",
"test": "tape test.js | faucet",
"coverage": "istanbul cover tape test.js | tap-spec",
"coveralls": "npm run coverage ; cat ./coverage/lcov.info | coveralls"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastfall.git"
},
"keywords": [
"async",
"waterfall",
"fall",
"fast",
"callback"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/fastfall/issues"
},
"homepage": "https://github.com/mcollina/fastfall#readme",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"async": "^1.0.0",
"coveralls": "^2.11.6",
"fastbench": "^1.0.0",
"faucet": "0.0.1",
"insync": "^2.1.1",
"istanbul": "^0.4.1",
"neo-async": "^1.7.0",
"pre-commit": "^1.0.10",
"run-waterfall": "^1.1.1",
"standard": "^5.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.0.0",
"waterfallize": "^1.0.0"
},
"dependencies": {
"reusify": "^1.0.0"
}
}