-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
60
61
{
"name": "vscode-thinkphp5",
"displayName": "ThinkPHP5",
"publisher": "TanShun",
"description": "A vscode extension for ThinkPHP5",
"version": "0.0.3",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:php"
],
"repository": "https://github.com/TanShun/vscode-thinkphp5",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
],
"configuration": {
"title": "ThinkPHP5 Extension Configuration",
"properties": {
"thinkphp5.php": {
"type": "string",
"default": "php",
"description": "php executable path"
}
}
},
"configurationDefaults": {
"[html]": {
"editor.links": false
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile && node ./node_modules/cp-cli/bin/cp-cli ./src/php ./out/php",
"compile": "tsc -p ./",
"watch": "node ./node_modules/concurrently/bin/concurrently -r \"tsc -watch -p ./\" \"node ./build/watch\"",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"concurrently": "^4.1.0",
"cp-cli": "^1.1.2",
"fs-extra": "^7.0.1",
"glob-watcher": "^5.0.3",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.25"
},
"dependencies": {}
}