lsif-node/protocol/package.json

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

2019-03-26 00:08:06 +03:00
{
"name": "lsif-protocol",
"description": "Typescript implementation of the LSIF protocol",
2021-07-14 17:24:39 +03:00
"version": "0.6.0-next.6",
2019-03-26 00:52:42 +03:00
"author": "Microsoft Corporation",
2019-03-26 00:08:06 +03:00
"license": "MIT",
"repository": {
"type": "git",
2021-02-05 13:03:23 +03:00
"url": "git+https://github.com/Microsoft/lsif-node.git"
2019-03-26 00:08:06 +03:00
},
2019-03-26 23:49:17 +03:00
"bugs": {
2021-02-05 13:03:23 +03:00
"url": "https://github.com/Microsoft/lsif-node/issues"
2019-03-26 23:49:17 +03:00
},
2019-03-26 00:08:06 +03:00
"main": "lib/main.js",
"typings": "lib/main.d.ts",
"dependencies": {
2021-02-05 13:03:23 +03:00
"vscode-languageserver-protocol": "^3.16.0"
2019-03-26 00:08:06 +03:00
},
"scripts": {
2019-03-27 00:42:20 +03:00
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
2019-03-27 00:50:51 +03:00
"compile:publish": "node ../build/bin/tsc -p ./tsconfig.publish.json",
2020-11-27 14:08:26 +03:00
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
2019-03-26 00:08:06 +03:00
"clean": "node ../node_modules/rimraf/bin.js lib",
2020-11-27 14:08:26 +03:00
"lint": "node ../node_modules/eslint/bin/eslint.js ./src/*.ts",
2021-02-05 13:03:23 +03:00
"prepublishOnly": "git clean -xfd . && npm run clean && npm install && npm run compile:publish && npm run lint",
2019-03-26 00:08:06 +03:00
"postpublish": "node ../build/bin/post-publish.js"
}
2019-03-27 00:42:20 +03:00
}