forked from snyk/snyk-docker-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.5 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
{
"name": "snyk-docker-plugin",
"description": "Snyk CLI docker plugin",
"author": "snyk.io",
"license": "Apache-2.0",
"homepage": "https://github.com/snyk/snyk-docker-plugin",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-docker-plugin"
},
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"debug": "tsc-watch --project tsconfig.json --onSuccess 'node --inspect --inspect-brk .'",
"lint": "run-p --max-parallel=${JOBS:-5} --aggregate-output lint:*",
"lint:prettier": "prettier --check \"{lib,test}/**/*.ts\"",
"lint:tslint": "tslint --format stylish \"{lib,test}/**/*.ts\"",
"lint:commit": "commitlint --from=HEAD~5",
"format": "prettier --loglevel warn --write '{lib,test}/**/*.ts' && tslint --fix --format stylish '{lib,test}/**/*.ts'",
"test": "npm run test-jest",
"test-jest": "jest --ci --maxWorkers=3 --logHeapUsage",
"test-jest-windows": "jest --ci --maxWorkers=3 --config test/windows/jest.config.js --logHeapUsage",
"prepare": "npm run build"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@snyk/composer-lockfile-parser": "^1.4.1",
"@snyk/dep-graph": "^2.8.1",
"@snyk/docker-registry-v2-client": "^2.11.0",
"@snyk/rpm-parser": "3.1.0",
"@snyk/snyk-docker-pull": "^3.11.0",
"@swimlane/docker-reference": "^2.0.1",
"adm-zip": "^0.5.5",
"chalk": "^2.4.2",
"debug": "^4.1.1",
"docker-modem": "3.0.8",
"dockerfile-ast": "0.6.1",
"elfy": "^1.0.0",
"event-loop-spinner": "^2.0.0",
"gunzip-maybe": "^1.4.2",
"mkdirp": "^1.0.4",
"packageurl-js": "1.2.0",
"semver": "^7.6.0",
"shescape": "^1.7.4",
"snyk-nodejs-lockfile-parser": "^1.52.11",
"snyk-poetry-lockfile-parser": "^1.4.0",
"tar-stream": "^2.1.0",
"tmp": "^0.2.1",
"tslib": "^1",
"uuid": "^8.2.0",
"varint": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/adm-zip": "^0.4.34",
"@types/debug": "^4.1.5",
"@types/jest": "^29.5.5",
"@types/node": "14.14.31",
"@types/tar-stream": "^1.6.1",
"@types/tmp": "^0.2.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.2.1",
"tsc-watch": "^4.2.8",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.7.3"
},
"release": {
"branches": [
"main"
]
}
}