forked from Matthelonianxl/broker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "snyk-broker",
"description": "Broker for private communication between internal systems and outside public systems",
"main": "dist/lib/index.js",
"bin": {
"snyk-broker": "./dist/cli/index.js",
"broker": "./dist/cli/index.js"
},
"engines": {
"node": "12"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build && rm -rf ./dist/client-templates && cp -Rf ./client-templates ./dist",
"start": "node .",
"dev": "tsc-watch --project tsconfig.json --onSuccess 'node .' | ./node_modules/.bin/bunyan",
"test": "npm run lint && CI=1 tap -j1 -R spec test/**/*.test.js --timeout 60",
"lint": "eslint --color --cache '{cli,lib,test}/**/*.{js,ts}'",
"check-tests": "! grep 'test.only' test/**/*.test.js -n"
},
"keywords": [],
"author": "Snyk.io",
"license": "Apache-2.0",
"directories": {
"test": "test"
},
"devDependencies": {
"@types/node": "^12.12.47",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"compression": "^1.7.4",
"eslint": "^7.2.0",
"proxyquire": "^2.1.3",
"require-reload": "^0.2.2",
"sinon": "^9.0.2",
"tap": "^14.10.7",
"tap-only": "0.0.5",
"tmp": "^0.2.1",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"camelcase": "^5.3.1",
"clarify": "^2.0.0",
"clite": "^0.3.0",
"dotenv": "^6.2.0",
"ejson": "^2.2.0",
"engine.io": "^3.4.0",
"engine.io-client": "^3.4.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.mapvalues": "^4.6.0",
"minimatch": "^3.0.4",
"node-cache": "^5.1.0",
"path-to-regexp": "^1.8.0",
"primus": "^6.0.1",
"primus-emitter": "^3.1.1",
"qs": "^6.9.1",
"request": "^2.88.0",
"snyk-config": "^3.1.1",
"then-fs": "^2.0.0",
"tunnel": "0.0.6",
"undefsafe": "^2.0.2",
"uuid": "^8.1.0"
},
"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
}