-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "probo-proxy",
"version": "2.0.1",
"description": "Smart HTTP site proxy for ProboCI",
"main": "index.js",
"scripts": {
"start": "node index.js",
"prod": "node index.js -c prod.yaml",
"startdev": "nodemon index.js -c dev.yaml | bunyan",
"test": "mocha --recursive --require should",
"testw": "mocha -w --recursive --require should"
},
"author": "Ilya Braude <[email protected]>",
"license": "Proprietary",
"dependencies": {
"basic-auth": "^1.0.4",
"bunyan": "^1.4.0",
"dtrace-provider": "^0.8.8",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"lru-cache": "^2.6.5",
"ms": "^0.7.1",
"request": "^2.88.1",
"restify": "^8.5.1",
"uuid": "^2.0.1",
"yaml-config-loader": "^2.0.1",
"yargs": "^16.2.0 "
},
"devDependencies": {
"bluebird": "^2.10.0",
"co-mocha": "^1.1.2",
"eslint": "^2.10.2",
"eslint-config-probo": "^1.0.2",
"mocha": "^3.5.3",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"should": "^7.1.0",
"superagent": "^3.7.0",
"superagent-promise": "^1.1.0"
}
}