forked from snyk/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 4.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "snyk",
"description": "snyk library and cli utility",
"main": "dist/lib/index.js",
"files": [
"help",
"dist",
"config.default.json",
"test-unpublished.json",
"SECURITY.md",
"README.md",
"Contributor-Agreement.md",
".snyk"
],
"directories": {
"test": "test"
},
"bin": {
"snyk": "dist/cli/index.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"find-circular": "npm run build && madge --circular ./dist",
"format": "prettier --write '{src,test,scripts}/**/*.{js,ts}'",
"prepare": "npm run build",
"test:common": "npm run check-tests && npm run build && npm run lint && node --require ts-node/register src/cli test --org=snyk",
"test:acceptance": "tap test/acceptance/**/*.test.* -Rspec --timeout=300 --node-arg=-r --node-arg=ts-node/register",
"test:system": "tap test/system/*.test.* -Rspec --timeout=300 --node-arg=-r --node-arg=ts-node/register",
"test:test": "tap test/*.test.* -Rspec --timeout=300 --node-arg=-r --node-arg=ts-node/register",
"test": "npm run test:common && npm run test:acceptance && npm run test:system && npm run test:test",
"test-windows": "npm run test:acceptance && npm run test:system && npm run test:test",
"lint": "run-p --aggregate-output lint:*",
"lint:js": "eslint --color --cache 'src/**/*.{js,ts}'",
"lint:formatting": "prettier --check '{src,test,scripts}/**/*.{js,ts}'",
"check-tests": "! grep 'test\\.only' test/*.test.js -n",
"snyk-auth": "node --require ts-node/register src/cli auth $SNYK_API_KEY",
"snyk-auth-windows": "node --require ts-node/register src/cli auth %SNYK_API_KEY%"
},
"keywords": [
"security",
"vulnerabilities",
"advisories",
"audit",
"snyk",
"scan",
"docker",
"container",
"scanning"
],
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"@snyk/cli-interface": "2.3.0",
"@snyk/dep-graph": "1.13.1",
"@snyk/gemfile": "1.2.0",
"@snyk/snyk-cocoapods-plugin": "2.0.1",
"@types/agent-base": "^4.2.0",
"@types/restify": "^4.3.6",
"abbrev": "^1.1.1",
"ansi-escapes": "3.2.0",
"chalk": "^2.4.2",
"cli-spinner": "0.2.10",
"configstore": "^3.1.2",
"debug": "^3.1.0",
"diff": "^4.0.1",
"git-url-parse": "11.1.2",
"glob": "^7.1.3",
"inquirer": "^6.2.2",
"lodash": "^4.17.14",
"needle": "^2.2.4",
"opn": "^5.5.0",
"os-name": "^3.0.0",
"proxy-agent": "^3.1.1",
"proxy-from-env": "^1.0.0",
"semver": "^6.0.0",
"snyk-config": "^2.2.1",
"snyk-docker-plugin": "1.33.1",
"snyk-go-plugin": "1.11.1",
"snyk-gradle-plugin": "3.2.2",
"snyk-module": "1.9.1",
"snyk-mvn-plugin": "2.7.0",
"snyk-nodejs-lockfile-parser": "1.16.1",
"snyk-nuget-plugin": "1.16.0",
"snyk-php-plugin": "1.7.0",
"snyk-policy": "1.13.5",
"snyk-python-plugin": "1.16.0",
"snyk-resolve": "1.0.1",
"snyk-resolve-deps": "4.4.0",
"snyk-sbt-plugin": "2.9.2",
"snyk-tree": "^1.0.0",
"snyk-try-require": "1.3.1",
"source-map-support": "^0.5.11",
"strip-ansi": "^5.2.0",
"tempfile": "^2.0.0",
"then-fs": "^2.0.0",
"update-notifier": "^2.5.0",
"uuid": "^3.3.2",
"wrap-ansi": "^5.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/diff": "^3.5.2",
"@types/lodash": "^4.14.136",
"@types/needle": "^2.0.4",
"@types/node": "^6.14.4",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.1.0",
"madge": "^3.4.4",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"proxyquire": "^1.7.4",
"restify": "^4.1.1",
"rimraf": "^2.6.3",
"sinon": "^4.0.0",
"tap": "^12.6.1",
"tape": "^4.0.0",
"ts-node": "^8.0.0",
"tslint": "^5.14.0",
"typescript": "^3.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk.git"
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [
"config.default.json",
"test-unpublished.json",
"help/**/*.txt",
"dist/STANDALONE"
]
}
}