forked from RackHD/on-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "on-http",
"version": "0.0.0",
"description": "OnRack Http Server",
"main": "index.js",
"scripts": {
"doc": "./node_modules/.bin/jsdoc lib/api/1.1/northbound -r -d docs",
"test": "./node_modules/.bin/mocha $(find spec -name '*-spec.js') -R spec --require spec/helper.js",
"install": "./install-web-ui.sh && ./install-swagger-ui.sh",
"apidoc": "./node_modules/.bin/apidoc -i lib/api/1.1/northbound -f '.*\\.js$' -o build/apidoc"
},
"repository": {
"type": "git",
"url": "https://github.com/RackHD/on-http.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"acl": "~0.4.9",
"body-parser": "^1.10.1",
"cors": "^2.5.2",
"debug": "~2.2.0",
"di": "git+https://github.com/RackHD/di.js.git",
"ejs": "^2.0.8",
"es6-shim": "^0.22.2",
"express": "^4.10.7",
"glob": "^4.3.2",
"http-proxy-middleware": "~0.11.0",
"ip": "~1.1.2",
"jsonwebtoken": "^5.4.4",
"lodash": "^3.10.1",
"moment": "~2.11.1",
"mongodb": "^1.4.28",
"multer": "~1.1.0",
"node-ssdp": "~2.7.0",
"on-core": "git+https://github.com/RackHD/on-core.git",
"on-finished": "^2.2.0",
"on-tasks": "git+https://github.com/RackHD/on-tasks.git",
"os-tmpdir": "~1.0.1",
"passport": "^0.3.2",
"passport-anonymous": "~1.0.1",
"passport-http": "~0.3.0",
"passport-jwt": "~2.0.0",
"passport-local": "^1.0.0",
"pluralize": "~1.1.2",
"rimraf": "~2.5.0",
"swagger-express-mw": "^0.6.0",
"swagger-tools": "~0.9.11",
"tar": "~2.2.1",
"tv4": "~1.2.7",
"url-parse": "~1.1.1",
"validator": "^5.2.0",
"ws": "^0.8.0",
"fs-extra": "~0.30.0"
},
"devDependencies": {
"apidoc": "^0.12.1",
"chai": "^2.0.0",
"chai-as-promised": "^4.2.0",
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-istanbul": "^2.3.1",
"grunt-mocha-test": "^0.12.7",
"grunt-notify": "^0.4.1",
"grunt-swagger-js-codegen": "^0.4.0",
"grunt-yaml": "^0.4.1",
"istanbul": "^0.3.5",
"jsdoc": "^3.3.0-alpha13",
"jshint": "^2.5.11",
"mocha": "^2.1.0",
"nock": "~3.5.0",
"rewire": "^2.5.1",
"sinon": "1.16.1",
"sinon-as-promised": "^2.0.3",
"sinon-chai": "^2.7.0",
"supertest": "^1.2.0",
"xunit-file": "0.0.6"
},
"apidoc": {
"name": "RackHD API Documentation",
"version": "1.1.0",
"description": "RackHD API Documentation",
"title": "RackHD API Documentation",
"url": "http://servername:8080",
"header": {
"title": "About",
"filename": "static/apidoc/header.md"
},
"footer": {
"title": "Other Information",
"filename": "static/apidoc/footer.md"
}
}
}