-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.26 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": "vscode-fix-checksums",
"displayName": "Fix VSCode Checksums",
"description": "A VSCode extension to adjust checksums after changes to core files",
"icon": "resources/logo.png",
"version": "1.1.0",
"license": "MIT",
"main": "./extension",
"publisher": "lehni",
"author": {
"name": "Jürg Lehni",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/lehni/vscode-fix-checksums/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lehni/vscode-fix-checksums"
},
"engines": {
"vscode": "^1.25.0"
},
"keywords": [
"vscode",
"extension",
"fix",
"checksum",
"checksums"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:fixChecksums.apply",
"onCommand:fixChecksums.restore"
],
"contributes": {
"commands": [
{
"command": "fixChecksums.apply",
"title": "Fix Checksums: Apply"
},
{
"command": "fixChecksums.restore",
"title": "Fix Checksums: Restore"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42",
"eslint": "^4.11.0",
"vscode": "^1.1.6"
}
}