vscode-languageserver-node/types/package.json

29 строки
987 B
JSON
Исходник Обычный вид История

2016-06-16 23:27:11 +03:00
{
"name": "vscode-languageserver-types",
"description": "Types used by the Language server for node",
2020-03-23 14:05:19 +03:00
"version": "3.16.0-next.1",
2016-06-16 23:27:11 +03:00
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git",
"directory": "types"
2016-06-16 23:27:11 +03:00
},
"bugs": {
2016-07-29 09:52:54 +03:00
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
2016-06-16 23:27:11 +03:00
},
2018-03-07 19:31:58 +03:00
"main": "./lib/umd/main.js",
"typings": "./lib/umd/main",
"module": "./lib/esm/main.js",
2016-06-16 23:27:11 +03:00
"scripts": {
2018-04-06 12:37:27 +03:00
"prepublishOnly": "npm run clean && npm run compile-esm && npm run compile && npm run test",
"postpublish": "node ../build/npm/post-publish.js",
2019-08-28 18:38:33 +03:00
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
"compile-esm": "node ../build/bin/tsc -b ./tsconfig.esm.json",
2018-04-06 12:37:27 +03:00
"clean": "node ../node_modules/rimraf/bin.js lib",
"watch": "node ../build/bin/tsc -b ./tsconfig-watch.json -w",
2018-08-14 12:38:49 +03:00
"test": "node ../node_modules/mocha/bin/_mocha",
"preversion": "npm test"
2016-06-16 23:27:11 +03:00
}
}