vscode-php-intellisense/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2016-08-25 15:55:00 +00:00
{
"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,
2017-02-03 12:32:09 +00:00
"preview": false,
2017-02-04 00:46:58 +00:00
"version": "1.1.0",
2016-08-25 15:55:00 +00:00
"engines": {
2016-11-18 14:09:06 +00:00
"vscode": "^1.7.0"
2016-08-25 15:55:00 +00:00
},
2016-09-04 11:26:31 +00:00
"keywords": [
"php",
"intellisense",
"autocompletion",
"help",
"refactor"
],
2016-08-25 15:55:00 +00:00
"categories": [
"Languages"
],
2016-09-04 11:26:31 +00:00
"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"
},
2016-08-25 15:55:00 +00:00
"activationEvents": [
"onLanguage:php"
],
"main": "./out/extension",
"scripts": {
2016-10-12 08:45:01 +00:00
"compile": "tsc -p .",
"watch": "tsc -w -p .",
2016-10-11 01:27:43 +00:00
"postinstall": "node ./node_modules/vscode/bin/install && typings prune && typings install",
2016-08-25 15:55:00 +00:00
"lint": "tslint -c tslint.json \"src/**/*.ts\""
},
"devDependencies": {
2016-12-25 11:33:12 +00:00
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"typings": "^2.0.0",
2016-09-04 12:06:35 +00:00
"vsce": "^1.8.1",
2016-10-12 08:45:01 +00:00
"vscode": "^1.0.0"
2016-08-25 15:55:00 +00:00
},
"dependencies": {
2016-10-12 08:26:08 +00:00
"mz": "^2.4.0",
"semver": "^5.3.0",
2017-02-03 12:17:34 +00:00
"vscode-languageclient": "^3.0.3"
2016-08-25 15:55:00 +00:00
}
}