-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.24 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "flowa",
"version": "4.0.2",
"description": "Service level control flow for Node.js",
"main": "index.js",
"author": "Mohammad Fares <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/faressoft/flowa.git"
},
"scripts": {
"test": "nyc --reporter=text mocha ./test",
"coverage": "nyc --reporter=html npm test && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"control",
"flow",
"async",
"promise",
"express",
"express.js",
"route",
"parallel",
"sync",
"serial",
"serial",
"waterfall",
"api",
"restful",
"task",
"runner",
"service",
"all",
"execute",
"run",
"context",
"server",
"http",
"request",
"step",
"jump",
"debug"
],
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"async": "^2.6.0",
"is_js": "^0.9.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^11.9.0",
"require-dir": "^1.0.0",
"sinon": "^6.1.0",
"ticks-tracer": "^1.3.0"
}
}