-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "use-strict-everywhere",
"displayName": "Use Strict Everywhere",
"description": "Adds 'use strict' to the beginning of every Javascript file",
"version": "0.1.4",
"publisher": "veekas shrivastava",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.use-strict-everywhere"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.use-strict-everywhere",
"title": "Use Strict Everywhere"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.0",
"typescript": "^2.8.3",
"vscode": "^1.1.16"
},
"repository": {
"type": "git",
"url": "https://github.com/veekas/use-strict-everywhere"
},
"icon": "images/USE-icon.png",
"galleryBanner": {
"color": "#282c34",
"theme": "dark"
}
}