vscode-php-intellisense/package.json

59 lines
1.3 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": false,
"version": "1.1.2",
"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.3"
}
}