-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "new-react-component",
"displayName": "new-react-component",
"description": "",
"version": "0.0.1",
"publisher": "10hendersonm",
"engines": {
"vscode": "^1.27.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.newReactComponent"
],
"main": "./extension",
"contributes": {
"menus": {
"explorer/context": [{
"command": "extension.newReactComponent",
"when": "explorerResourceIsFolder",
"group": "navigation@10"
}]
},
"commands": [
{
"command": "extension.newReactComponent",
"title": "New React Component"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"deploy": "rm -rf %USERPROFILE%/.vscode/extensions/new-react-component && cp -r . %USERPROFILE%/.vscode/extensions/new-react-component"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}