lsif-node/protocol/package.json

29 строки
995 B
JSON

{
"name": "lsif-protocol",
"description": "Typescript implementation of the LSIF protocol",
"version": "0.6.0-next.6",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/lsif-node.git"
},
"bugs": {
"url": "https://github.com/Microsoft/lsif-node/issues"
},
"main": "lib/main.js",
"typings": "lib/main.d.ts",
"dependencies": {
"vscode-languageserver-protocol": "^3.16.0"
},
"scripts": {
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
"compile:publish": "node ../build/bin/tsc -p ./tsconfig.publish.json",
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
"clean": "node ../node_modules/rimraf/bin.js lib",
"lint": "node ../node_modules/eslint/bin/eslint.js ./src/*.ts",
"prepublishOnly": "git clean -xfd . && npm run clean && npm install && npm run compile:publish && npm run lint",
"postpublish": "node ../build/bin/post-publish.js"
}
}