vscode-php-intellisense/package.json

120 lines
3.0 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>",
2017-11-23 00:46:18 +00:00
"license": "MIT",
2016-08-25 15:55:00 +00:00
"private": true,
2017-02-03 12:32:09 +00:00
"preview": false,
2017-11-23 00:46:18 +00:00
"version": "1.5.4",
2016-08-25 15:55:00 +00:00
"engines": {
2017-11-23 00:46:18 +00:00
"vscode": "^1.17.1"
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": [
"Programming Languages"
2016-08-25 15:55:00 +00:00
],
2017-11-23 00:46:18 +00:00
"icon": "images/logo.png",
2016-09-04 11:26:31 +00:00
"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": [
2017-11-23 00:46:18 +00:00
"onLanguage:php",
"workspaceContains:**/*.php"
2016-08-25 15:55:00 +00:00
],
2017-02-18 00:29:15 +00:00
"contributes": {
"configuration": {
"type": "object",
"title": "PHP IntelliSense",
"properties": {
"php.memoryLimit": {
"type": "string",
"default": "4095M",
"description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM (default is 4G).",
"pattern": "^\\d+[KMG]?$"
},
"php.executablePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "The path to a PHP 7+ executable."
},
"php.fileTypes": {
"type": [
"array"
],
"default": [".php"],
"description": "List of file types that should be indexed by the php language server. (Restart required)"
}
}
}
},
2016-08-25 15:55:00 +00:00
"main": "./out/extension",
"scripts": {
2017-11-23 00:46:18 +00:00
"build": "tsc -p .",
2016-10-12 08:45:01 +00:00
"watch": "tsc -w -p .",
2017-11-23 00:46:18 +00:00
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"semantic-release": "semantic-release",
"commitmsg": "commitlint -e $GIT_PARAMS"
2016-08-25 15:55:00 +00:00
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@types/mocha": "5.0.0",
2017-11-23 00:46:18 +00:00
"@types/mz": "^0.0.31",
"@types/node": "^8.0.24",
"@types/semver": "^5.3.34",
"husky": "^0.14.3",
2018-05-30 21:26:16 +00:00
"semantic-release": "^15.5.0",
"semantic-release-vsce": "^2.1.1",
2017-11-23 00:46:18 +00:00
"tslint": "^5.0.0",
2016-12-25 11:33:12 +00:00
"typescript": "^2.1.4",
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"
2017-11-23 00:46:18 +00:00
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
2017-11-23 00:46:18 +00:00
},
"release": {
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
2018-05-30 21:26:16 +00:00
"prepare": {
"path": "semantic-release-vsce",
"packageVsix": "php-intellisense.vsix"
},
2017-11-23 00:46:18 +00:00
"publish": [
2018-05-30 21:26:16 +00:00
"semantic-release-vsce",
2017-11-23 00:46:18 +00:00
{
"path": "@semantic-release/github",
"assets": "php-intellisense.vsix"
}
]
2016-08-25 15:55:00 +00:00
}
}