-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
115 lines (115 loc) · 2.61 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
{
"name": "maudit",
"displayName": "maudit",
"description": "Simple source code security audit helper",
"publisher": "m4yfly",
"version": "0.0.6",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/m4yfly/vscode-maudit.git"
},
"bugs": {
"url": "https://github.com/m4yfly/vscode-maudit/issues"
},
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:maduit.analyze",
"onLanguage:php",
"onLanguage:python",
"onLanguage:java",
"onLanguage:perl",
"workspaceContains:*.php",
"workspaceContains:*.py",
"workspaceContains:*.java",
"workspaceContains:*.pl",
"workspaceContains:*.pm"
],
"keywords": [
"maduit",
"analysis",
"auditing"
],
"icon": "imgs/maduit.png",
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "maudit-container",
"title": "Maudit",
"icon": "resources/viewsContainer-icon.svg"
}
]
},
"views": {
"maudit-container": [
{
"id": "maudit-explorer",
"name": "Analysis",
"when": "mauditCompatibleWorkspace"
}
]
},
"menus": {
"view/title": [
{
"command": "maudit.analyze",
"when": "view == maudit-explorer",
"group": "navigation@0"
},
{
"command": "maudit.clear",
"when": "view == maudit-explorer",
"group": "navigation@1"
}
]
},
"commands": [
{
"command": "maudit.analyze",
"icon": {
"dark": "resources/analyze-dark.svg",
"light": "resources/analyze-light.svg"
},
"title": "Maudit: Analyze"
},
{
"command": "maudit.clear",
"icon": {
"dark": "resources/clear-dark.svg",
"light": "resources/clear-light.svg"
},
"title": "Maudit: Clear Results"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "9.0.0",
"@types/node": "^12.11.7",
"@types/spark-md5": "^3.0.2",
"@types/vscode": "^1.42.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"run-sequence": "^2.2.1",
"vscode-test": "^1.3.0"
},
"dependencies": {
"spark-md5": "^3.0.0"
}
}