-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.41 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
{
"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",
"eslint": "eslint -c .eslintrc src",
"find-circular": "npm run build && madge --circular ./dist",
"tslint": "tslint --project tsconfig.json --format stylish --exclude **/src/**/*.js",
"prepare": "npm run build",
"tap": "tap test/*.test.* test/acceptance/*.test.* test/system/*.test.* -Rspec --timeout=300 --node-arg=-r --node-arg=ts-node/register",
"test": "npm run test-common && npm run tap",
"test-common": "npm run check-tests && npm run build && npm run lint && node --require ts-node/register src/cli test --org=snyk",
"lint": "npm run eslint && npm run tslint",
"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/dep-graph": "1.12.0",
"@snyk/gemfile": "1.2.0",
"@types/agent-base": "^4.2.0",
"abbrev": "^1.1.1",
"ansi-escapes": "^4.1.0",
"chalk": "^2.4.2",
"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.0",
"proxy-from-env": "^1.0.0",
"semver": "^6.0.0",
"snyk-config": "^2.2.1",
"snyk-docker-plugin": "1.29.1",
"snyk-go-plugin": "1.11.0",
"snyk-gradle-plugin": "^3.0.2",
"snyk-module": "1.9.1",
"snyk-mvn-plugin": "2.4.0",
"snyk-nodejs-lockfile-parser": "1.16.0",
"snyk-nuget-plugin": "1.11.3",
"snyk-php-plugin": "1.6.4",
"snyk-policy": "1.13.5",
"snyk-python-plugin": "^1.13.0",
"snyk-resolve": "1.0.1",
"snyk-resolve-deps": "4.3.0",
"snyk-sbt-plugin": "2.6.1",
"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"
},
"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",
"eslint": "^5.16.0",
"madge": "^3.4.4",
"nock": "^10.0.6",
"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"
]
},
"snyk": true
}