2018-12-04 13:12:33 +03:00
{
2019-06-20 16:30:57 +03:00
"name" : "lsif-node" ,
2019-06-26 15:23:49 +03:00
"private" : true ,
2019-06-20 16:30:57 +03:00
"version" : "0.4.0" ,
2018-12-04 13:12:33 +03:00
"description" : "" ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/Microsoft/language-server-index-format.git"
} ,
"author" : "MS" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://github.com/Microsoft/language-server-index-format/issues"
} ,
"homepage" : "https://github.com/Microsoft/language-server-index-format#readme" ,
"devDependencies" : {
2020-03-05 14:56:17 +03:00
"@types/node" : "^12.12.29" ,
2020-07-22 16:11:13 +03:00
"@types/shelljs" : "^0.8.8" ,
"typescript" : "^3.9.7" ,
2020-03-05 14:56:17 +03:00
"eslint" : "^6.8.0" ,
2020-07-22 16:11:13 +03:00
"@typescript-eslint/parser" : "^3.7.0" ,
"@typescript-eslint/eslint-plugin" : "^3.7.0" ,
"shelljs" : "^0.8.4" ,
2020-06-30 12:21:24 +03:00
"rimraf" : "^3.0.2" ,
2020-10-19 18:41:20 +03:00
"mocha" : "^8.2.0"
2018-12-04 13:12:33 +03:00
} ,
"scripts" : {
2020-11-27 14:08:26 +03:00
"postinstall" : "cd protocol && npm install && cd ../tsc && npm install && cd ../npm && npm install && cd ../sqlite && npm install && cd ../tooling && npm install && cd ../util && npm install && cd .. && npm run symlink && cd samples/typescript && npm install && cd ../javascript && npm install && cd ../.." ,
2018-12-04 13:12:33 +03:00
"symlink" : "node ./build/bin/symlink.js" ,
2019-03-27 00:42:20 +03:00
"compile" : "tsc -b ./tsconfig.json" ,
2019-08-26 15:12:33 +03:00
"compile:build" : "cd build/azure-pipelines/tasks && tsc -p ./tsconfig.json" ,
2020-11-27 14:08:26 +03:00
"watch" : "tsc -b ./tsconfig.watch.json -w" ,
2019-08-26 15:12:33 +03:00
"watch:build" : "cd build/azure-pipelines/tasks && tsc -p ./tsconfig.json -w" ,
2020-11-27 14:08:26 +03:00
"lint" : "cd protocol && npm run lint && cd ../tsc && npm run lint && cd ../npm && npm run lint && cd ../sqlite && npm run lint && cd ../tooling && npm run lint && cd ../util && npm run lint && cd .." ,
2021-01-17 18:08:32 +03:00
"clean" : "cd protocol && npm run clean && cd ../tooling && npm run clean && cd ../tsc && npm run clean && cd ../npm && npm run clean && cd ../sqlite && npm run clean && cd ../tooling && npm run clean && cd .." ,
2020-10-29 16:52:49 +03:00
"test" : "cd util && npm run test:ci && cd ../tsc && npm run test && cd .."
2018-12-04 13:12:33 +03:00
}
}