forked from microsoft/sarif-vscode-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 4.71 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
145
146
147
148
149
150
{
"name": "sarif-viewer",
"displayName": "Sarif Viewer",
"description": "Adds support for viewing SARIF logs",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "3.0.2",
"publisher": "MS-SarifVSCode",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/sarif-vscode-extension.git"
},
"bugs": {
"url": "https://github.com/Microsoft/sarif-vscode-extension/issues"
},
"icon": "icon.png",
"categories": [
"Other"
],
"keywords": [
"sarif"
],
"engines": {
"vscode": "^1.44.0"
},
"activationEvents": [
"onLanguage:json",
"onCommand:sarif.showPanel",
"onCommand:sarif.clearState"
],
"main": "./out/context.js",
"contributes": {
"configuration": {
"title": "Sarif Viewer",
"properties": {
"sarif-viewer.rootpaths": {
"type": "array",
"description": "Add root paths for default mapping of locations in the sarif file that can't be found (ex. the local root directory of your repo)."
},
"sarif-viewer.explorer.openWhenNoResults": {
"description": "Indicates whether to open the explorer when there are no results in the log.",
"type": "boolean",
"default": true
},
"sarif-viewer.updateChannel": {
"description": "Specifies the type of updates the extension receives.",
"type": "string",
"enum": [
"Default",
"Insiders"
],
"enumDescriptions": [
"Default channel.",
"Insiders channel. Receives upcoming features and bug fixes at a faster rate."
],
"default": "Default",
"scope": "application"
}
}
},
"languages": [
{
"id": "json",
"extensions": [
".sarif"
]
}
],
"commands": [
{
"command": "sarif.showPanel",
"category": "SARIF",
"title": "Show Panel"
},
{
"command": "sarif.clearState",
"category": "SARIF",
"title": "Clear State"
}
]
},
"scripts": {
"prestart": "npm install",
"start": "webpack --watch --mode development",
"server": "webpack-dev-server -d",
"test": "mocha",
"testcoverage": "nyc mocha --watch=false",
"package": "vsce package",
"vscode:prepublish": "webpack --mode production",
"lint": "eslint src"
},
"devDependencies": {
"@actions/core": "1.2.6",
"@actions/github": "2.1.1",
"@types/follow-redirects": "1.8.0",
"@types/mocha": "2.2.48",
"@types/mock-require": "2.0.0",
"@types/node": "10.12.21",
"@types/node-fetch": "2.5.7",
"@types/proxyquire": "1.3.28",
"@types/react": "16.9.26",
"@types/react-dom": "16.9.5",
"@types/sarif": "2.1.3",
"@types/semver": "7.1.0",
"@types/sinon": "9.0.4",
"@types/tmp": "0.1.0",
"@types/url-join": "4.0.0",
"@types/vscode": "1.44.0",
"@typescript-eslint/eslint-plugin": "3.1.0",
"@typescript-eslint/parser": "3.1.0",
"@zeit/ncc": "0.22.1",
"css-loader": "3.4.2",
"eslint": "7.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-header": "3.0.0",
"json-source-map": "0.6.1",
"mocha": "7.1.1",
"node-sass": "4.14.1",
"nyc": "15.1.0",
"proxyquire": "2.1.3",
"react-markdown": "4.3.1",
"sass-loader": "8.0.2",
"sinon": "9.0.2",
"style-loader": "1.1.3",
"ts-loader": "6.2.2",
"ts-node": "8.8.2",
"tslint": "5.12.1",
"typescript": "3.8.3",
"url-loader": "4.0.0",
"vsce": "1.79.5",
"webpack": "^4.44.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"follow-redirects": "1.11.0",
"https-proxy-agent": "5.0.0",
"mobx": "5.15.4",
"mobx-react": "6.1.8",
"node-fetch": "2.6.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"semver": "7.3.2",
"tmp": "0.1.0",
"url-join": "4.0.1",
"vscode-codicons": "0.0.2",
"vscode-extension-telemetry": "0.1.6",
"vscode-uri": "2.1.2"
}
}