forked from creationix/step
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 875 Bytes
/
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
{
"name": "stepup",
"version": "1.1.2",
"description": "A simple control-flow library for Node that makes parallel execution, serial execution, and error handling painless.",
"homepage": "http://github.com/CrabDude/stepup",
"repository": {
"type": "git",
"url": "git://github.com/CrabDude/stepup.git"
},
"author": "Adam Crabtree <[email protected]>",
"main": "lib/stepup",
"engines": {
"node": ">=0.2.0"
},
"dependencies": {
"trycatch": "~1.0.3"
},
"devDependencies": {
"mocha": "~1.6.0",
"chai": "~1.3.0",
"survey": "~0.2.2"
},
"keywords": [
"error",
"exception",
"control",
"flow",
"async",
"series"
],
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec",
"bench": "survey ./bench/stepup"
},
"license": "MIT"
}