forked from snyk/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.12 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
{
"name": "@snyk/fix",
"version": "1.0.0-monorepo",
"description": "Snyk fix library and utility",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"help",
"dist",
"SECURITY.md",
"LICENSE",
"README.md"
],
"directories": {
"lib": "src",
"test": "test"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"security",
"vulnerabilities",
"advisories",
"audit",
"snyk",
"scan",
"docker",
"container",
"scanning"
],
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"@snyk/dep-graph": "^2.7.4",
"@snyk/fix-pipenv-pipfile": "^0.7.1",
"@snyk/fix-poetry": "^0.9.1",
"chalk": "4.1.1",
"debug": "^4.3.1",
"lodash.groupby": "4.6.0",
"lodash.sortby": "^4.7.0",
"ora": "5.4.0",
"p-map": "^4.0.0",
"strip-ansi": "6.0.0",
"toml": "3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}