forked from tin-tr1nh/php-refactor-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "php-refactor",
"displayName": "PHP Refactor",
"description": "Helper tool to leverage your works as refactoring PHP code",
"version": "0.0.6",
"publisher": "tintrinh",
"engines": {
"vscode": "^1.28.0"
},
"repository": "https://github.com/hungtin/php-refactor-vscode",
"icon": "logo.jpg",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:php.extractFunction",
"onCommand:php.extractFunctionWithComment"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "php.extractFunction",
"title": "PHP Refactor: Extract Function"
},
{
"command": "php.extractFunctionWithComment",
"title": "PHP Refactor: Extract Function With Comment"
}
]
},
"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": {
"typescript": "^2.6.1",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"vscode": "^1.1.21",
"php-parser": "^3.0.0-prerelease.5"
}
}