-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "refactor-jsx",
"displayName": "Refactor-JSX",
"description": "Extract a selection of jsx to a new component",
"version": "0.0.1",
"repository": "https://github.com/chiptus/vscode-refactor-jsx",
"publisher": "chiptus",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.extractJsx",
"title": "Extract JSX"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.0",
"eslint": "^4.18.2",
"mocha": "^3.5.0",
"typescript": "^2.5.2",
"vscode": "^1.1.5"
},
"dependencies": {
"prettier": "^1.7.4",
"refactor-jsx-helpers": "0.0.2"
}
}