forked from felixfbecker/vscode-php-intellisense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
{
"name": "php-intellisense",
"displayName": "PHP IntelliSense",
"description": "Advanced Autocompletion and Refactoring support for PHP",
"publisher": "felixfbecker",
"author": "Felix Becker <felix.b@outlook.com>",
"license": "ISC",
"private": true,
"preview": true,
"version": "0.0.12",
"engines": {
"vscode": "^1.7.0"
},
"keywords": [
"php",
"intellisense",
"autocompletion",
"help",
"refactor"
],
"categories": [
"Languages"
],
"icon": "images/logo.svg",
"galleryBanner": {
"color": "#6682BA",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/vscode-php-intellisense.git"
},
"bugs": {
"url": "https://github.com/felixfbecker/php-language-server/issues"
},
"activationEvents": [
"onLanguage:php"
],
"main": "./out/extension",
"scripts": {
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"postinstall": "node ./node_modules/vscode/bin/install && typings prune && typings install",
"lint": "tslint -c tslint.json \"src/**/*.ts\""
},
"devDependencies": {
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"typings": "^2.0.0",
"vsce": "^1.8.1",
"vscode": "^1.0.0"
},
"dependencies": {
"mz": "^2.4.0",
"semver": "^5.3.0",
"vscode-languageclient": "^3.0.1-alpha.14"
}
}