-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 985 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
{
"name": "autoflow-q",
"version": "0.7.0",
"description": "autoflow-q is a plugin for autoflow, the flow control rules engine, which adds integration with Q-style Deferred promises https://github.com/kriskowal/q ",
"main": "lib/autoflow-q",
"author": "Jeff Barczewski <jeff.barczewski@gmail.com>",
"repository": { "type": "git", "url": "http://github.com/jeffbski/autoflow-q.git" },
"bugs" : { "url": "http://github.com/jeffbski/autoflow-q/issues" },
"licenses": [{ "type": "MIT", "url" : "http://github.com/jeffbski/autoflow-q/raw/master/LICENSE" }],
"engines": { "node": ">=0.6" },
"dependencies": {
"autoflow": "~0.7.0",
"q": "~0.9.4"
},
"devDependencies": {
"mocha": "~1.10.0",
"chai": "~1.6.0"
},
"keywords": [
"Q",
"deferred",
"promise",
"flow",
"flow control",
"control flow",
"dataflow",
"reactive",
"async"
],
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/*.mocha.js"
}
}