This repository was archived by the owner on Feb 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 KB
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
{
"name": "workflow",
"version": "1.1.0",
"description": "Workflow Service",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"start": "node api/wf.js",
"apidoc": "apidoc -i api/ -o docs/apidoc/",
"doc": "cd docs && bundle exec jekyll serve",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/soichih/workflow.git"
},
"author": "Soichi Hayashi <hayashis@iu.edu>",
"dependencies": {
"amqp": "^0.2.6",
"async": "^2.4.1",
"body-parser": "^1.17.2",
"callback-timeout": "^3.0.0",
"compression": "^1.7.0",
"cors": "^2.8.4",
"coveralls": "^2.13.1",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"express-winston": "^2.4.0",
"hpss": "0.0.20",
"istanbul": "^0.4.5",
"jsonwebtoken": "^7.4.1",
"mime": "^1.3.6",
"mocha": "^3.4.2",
"mongoose": "^4.11.4",
"multiparty": "^4.1.3",
"redis": "^2.7.1",
"request": "^2.81.0",
"ssh2": "^0.5.5",
"sshpk": "^1.13.1",
"sshpk-agent": "^1.6.0",
"supertest": "^2.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"supertest": "^2.0.0"
},
"license": "MIT"
}