forked from CrabDude/stepup
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 887 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
{
"name": "stepdown",
"version": "0.4.4",
"description": "A simple control-flow library for Node that makes parallel execution, serial execution, and error handling painless.",
"homepage": "http://github.com/Schoonology/stepdown",
"repository": {
"type": "git",
"url": "git://github.com/Schoonology/stepdown.git"
},
"author": "Michael Schoonmaker <michael.r.schoonmaker@gmail.com>",
"main": "lib/stepdown",
"engines": {
"node": ">=0.2.0"
},
"dependencies": {
"debug": "~0.7.4",
"once-later": "^1.0.1"
},
"devDependencies": {
"mocha": "~1.6.0",
"chai": "~1.3.0",
"survey": "~0.2.2"
},
"keywords": [
"control",
"flow",
"async",
"series",
"error",
"handling"
],
"scripts": {
"test": "node_modules/mocha/bin/mocha --reporter spec",
"bench": "survey ./bench/stepdown"
},
"license": "MIT"
}