forked from snyk/broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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
{
"name": "snyk-broker",
"description": "Broker for private communication between internal systems and outside public systems",
"main": "lib/index.js",
"bin": {
"snyk-broker": "./cli/index.js",
"broker": "./cli/index.js"
},
"engines": {
"node": "8"
},
"scripts": {
"start": "node lib",
"dev": "node lib | ./node_modules/.bin/bunyan",
"test": "npm run lint && CI=1 tap -R spec test/**/*.test.js --timeout 60",
"lint": "eslint -c .eslintrc cli lib test",
"check-tests": "! grep 'test.only' test/**/*.test.js -n"
},
"keywords": [],
"author": "Snyk.io",
"license": "Apache-2.0",
"directories": {
"test": "test"
},
"devDependencies": {
"eslint": "^5.4.0",
"proxyquire": "^1.7.10",
"require-reload": "^0.2.2",
"sinon": "^1.17.5",
"tap": "^12.0.0",
"tap-only": "0.0.5",
"tmp": "0.0.33"
},
"dependencies": {
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"camelcase": "^5.0.0",
"clarify": "^2.0.0",
"clite": "^0.3.0",
"dotenv": "^6.0.0",
"ejson": "^2.1.2",
"engine.io": "^3.2.0",
"engine.io-client": "^3.2.1",
"express": "^4.16.3",
"js-yaml": "^3.13.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.mapvalues": "^4.6.0",
"minimatch": "^3.0.4",
"path-to-regexp": "^1.5.3",
"primus": "^6.0.1",
"primus-emitter": "^3.1.1",
"qs": "^6.5.2",
"request": "^2.88.0",
"snyk-config": "^2.2.1",
"then-fs": "^2.0.0",
"tunnel": "0.0.4",
"undefsafe": "^2.0.2",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/broker.git"
},
"bugs": {
"url": "https://github.com/snyk/broker/issues"
},
"homepage": "https://github.com/snyk/broker#readme",
"snyk": true
}