59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"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.9",
|
|
"engines": {
|
|
"vscode": "^1.6.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": "node ./node_modules/vscode/bin/compile -p ./",
|
|
"watch": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install && typings prune && typings install",
|
|
"lint": "tslint -c tslint.json \"src/**/*.ts\""
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^3.15.1",
|
|
"typescript": "^2.0.3",
|
|
"typings": "^1.3.3",
|
|
"vsce": "^1.8.1",
|
|
"vscode": "^0.11.17"
|
|
},
|
|
"dependencies": {
|
|
"semver": "^5.3.0",
|
|
"vscode": "^0.11.18",
|
|
"vscode-languageclient": "^2.5.0"
|
|
}
|
|
}
|