-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.96 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
{
"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": ">=4"
},
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"eslint": "eslint -c .eslintrc src",
"tslint": "tslint --project tsconfig.json --format stylish --exclude **/src/**/*.js",
"prepare": "npm run build",
"tap": "tap test/*.test.* -Rspec --timeout=180 --node-path ts-node --test-file-pattern '/\\.[tj]s$/'",
"test": "npm run test-common && npm run tap",
"test-common": "npm run check-tests && 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",
"snyk"
],
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"abbrev": "^1.1.1",
"ansi-escapes": "^3.1.0",
"chalk": "^2.4.1",
"configstore": "^3.1.2",
"debug": "^3.1.0",
"hasbin": "^1.2.3",
"inquirer": "^3.0.0",
"lodash": "^4.17.5",
"needle": "^2.2.4",
"opn": "^5.2.0",
"os-name": "^2.0.1",
"proxy-agent": "^2.0.0",
"proxy-from-env": "^1.0.0",
"recursive-readdir": "^2.2.2",
"semver": "^5.5.0",
"snyk-config": "2.2.0",
"snyk-docker-plugin": "1.12.0",
"snyk-go-plugin": "1.6.0",
"snyk-gradle-plugin": "2.1.0",
"snyk-module": "1.8.2",
"snyk-mvn-plugin": "2.0.0",
"snyk-nodejs-lockfile-parser": "1.5.3",
"snyk-nuget-plugin": "1.6.5",
"snyk-php-plugin": "1.5.1",
"snyk-policy": "1.12.0",
"snyk-python-plugin": "1.9.0",
"snyk-resolve": "1.0.1",
"snyk-resolve-deps": "4.0.2",
"snyk-sbt-plugin": "2.0.0",
"snyk-tree": "^1.0.0",
"snyk-try-require": "1.3.1",
"source-map-support": "^0.5.9",
"tempfile": "^2.0.0",
"then-fs": "^2.0.0",
"undefsafe": "^2.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/lodash": "^4.14.116",
"@types/node": "^10.10.0",
"eslint": "^4.11.0",
"nock": "^9.2.5",
"proxyquire": "^1.7.4",
"restify": "^4.1.1",
"sinon": "^1.17.2",
"strip-ansi": "^4.0.0",
"tap": "github:snyk/node-tap#alternative-runtimes",
"tape": "^4.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"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
}