forked from snyk/broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.86 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
{
"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": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"format": "prettier --write '{lib,test,cli}/**/*.{js,ts}'",
"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": "LOG_LEVEL=fatal CI=1 tap -j1 -R spec test/**/*.test.js --timeout 60 && jest",
"test:bin": "(cd test/bin; ./container-registry-agent/docker-entrypoint-test.sh)",
"test:bin:docker": "docker run --rm -it -v $PWD:/home/broker -w /home/broker/test/bin/ snyk/ubuntu ./container-registry-agent/docker-entrypoint-test.sh",
"lint": "prettier --check '{lib,test,cli}/**/*.{js,ts}' && 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/jest": "^26.0.5",
"@types/node": "^12.12.47",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"compression": "^1.7.4",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"jest-junit": "^11.0.1",
"prettier": "^2.0.5",
"tap": "^14.10.7",
"tap-only": "0.0.5",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.1.3",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/request": "^2.48.5",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"camelcase": "^5.3.1",
"clarify": "^2.0.0",
"dotenv": "^6.2.0",
"ejson": "^2.2.0",
"engine.io": "^5.2.1",
"engine.io-client": "^5.2.0",
"express": "^4.17.1",
"express-prom-bundle": "^5.1.5",
"js-yaml": "^3.13.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.mapvalues": "^4.6.0",
"lodash.merge": "^4.6.2",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"node-cache": "^5.1.0",
"path-to-regexp": "^1.8.0",
"primus": "^6.1.0",
"primus-emitter": "^3.1.1",
"prom-client": "^11.5.3",
"qs": "^6.9.1",
"request": "^2.88.1",
"snyk-config": "^4.0.0-rc.2",
"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
}