-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1023 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1023 Bytes
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
{
"name": "chainjs",
"version": "0.2.1",
"description": "Flow controller for the complex function logic.",
"main": "chain.js",
"scripts": {
"test": "npm run coverall",
"mocha": "mocha test/test.js",
"coverall": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/switer/chainjs.git"
},
"keywords": [
"chain",
"async",
"callback",
"javascript",
"step",
"flow",
"control"
],
"author": "switer",
"license": "MIT",
"bugs": {
"url": "https://github.com/switer/chainjs/issues"
},
"devDependencies": {
"chai": "^1.10.0",
"colors": "^0.6.2",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-header": "^1.7.1",
"gulp-watch": "^4.3.5",
"gulp-webpack": "^1.5.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "0.0.1"
}
}