-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
108 lines (108 loc) · 2.93 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
{
"name": "grype-vscode",
"displayName": "Grype",
"publisher": "anchoreinc",
"repository": {
"type": "git",
"url": "https://github.com/anchore/grype-vscode.git"
},
"bugs": {
"url": "https://github.com/anchore/grype-vscode/issues"
},
"homepage": "https://toolbox.anchore.io/",
"icon": "images/icon.png",
"license": "Apache-2.0",
"description": "Scans your project for manifests to discover vulnerable libraries and artifacts",
"version": "0.0.0",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"grype",
"vulnerabilities",
"vulnerability",
"dependency",
"dependencies",
"scan",
"scanner"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.scanWorkspace",
"title": "Grype: Scan Now"
},
{
"command": "extension.openVulnerabilityReport",
"title": "Grype: Open Vulnerability Report"
},
{
"command": "extension.enableAutomaticScanning",
"title": "Grype: Enable Automatic Scanning"
},
{
"command": "extension.disableAutomaticScanning",
"title": "Grype: Disable Automatic Scanning"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./ --noEmitOnError && npm run bundle",
"bundle": "webpack",
"lint": "eslint src --ext ts --max-warnings 0",
"format": "prettier -w .",
"format-check": "prettier --check .",
"watch": "tsc -watch -p ./",
"pretest": "npm run build && npm run lint",
"test-unit": "echo 'modify when unit tests have been added' && exit 0",
"test-integration": "node ./out/test/runTest.js",
"package": "vsce package --githubBranch main --out \"${STAGING_DIR:-..}/${VSIX_FILE:-grype-vscode.vsix}\""
},
"devDependencies": {
"@types/follow-redirects": "^1.13.0",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.0",
"@types/node": "^14.11.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/request": "^2.48.5",
"@types/tar": "^4.0.3",
"@types/tar-stream": "^2.1.0",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"typescript": "^3.8.3",
"vsce": "^1.79.5",
"vscode-test": "^1.4.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"follow-redirects": "^1.13.0",
"lodash": "^4.17.20",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^1.2.1",
"tar": "^6.0.5"
},
"prettier": {}
}