-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "work.flow",
"version": "0.0.0",
"description": "The unreleased asynchronous workflow library for Node",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"doc": "jsdoc -R ./README.md -r -d ./doc/api ./lib ./index.js",
"test": "snyk test && istanbul cover --dir ./doc/coverage _mocha -- --recursive && cat ./doc/coverage/lcov.info | ./node_modules/codecov/bin/codecov",
"analyze": "plato -d ./doc/analysis -r ./lib ./index.js",
"build": "npm run clean && npm run doc && npm run analyze && npm run test",
"clean": "rm -rf ./doc"
},
"repository": {
"type": "git",
"url": "github.com/defstream/work.flow"
},
"keywords": [
"workflow",
"work",
"flow",
"process",
"async",
"asynchronous",
"processing",
"lib",
"library",
"parallel",
"event",
"wait",
"await"
],
"author": "Hector Gray <[email protected]> (https://github.com/defstream)",
"license": "MIT",
"bugs": {
"url": "https://github.com/defstream/work.flow/issues"
},
"homepage": "https://github.com/defstream/work.flow",
"devDependencies": {
"chai": "3.5.0",
"codecov": "1.0.1",
"istanbul": "0.4.3",
"mocha": "2.4.5",
"plato": "1.5.0",
"snyk": "1.14.2"
},
"dependencies": {
"joi": "6.0.8",
"neo-async": "1.8.2",
"varse": "1.0.1"
}
}