-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 817 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
{ "name": "invoke"
, "version": "0.1.2"
, "author": "Steve Lloyd"
, "description": "Simple flow control library for chaining async functions"
, "main": "./lib/invoke"
, "keywords": [ "flow", "control", "sequence", "series", "parallel" ]
, "homepage": "https://github.com/repeatingbeats/invoke"
, "repository":
{ "type": "git"
, "url": "https://github.com/repeatingbeats/invoke"
}
, "bugs":
{ "url": "http://github.com/repeatingbeats/invoke/issues"
}
, "licenses":
[ { "type": "MIT"
, "url": "https://github.com/repeatingbeats/invoke/raw/master/LICENSE"
}
]
, "devDependencies":
{ "nodeunit": "0.6.x"
, "smoosh": ">=0.3.2"
}
, "scripts":
{ "test": "./node_modules/nodeunit/bin/nodeunit test/invoke-test.js"
, "build": "./node_modules/smoosh/bin/smoosh -rca ./config/build.json"
}
}