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",
|
|
|
|
"@types/shelljs": "^0.8.6",
|
|
|
|
"typescript": "^3.8.3",
|
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"@typescript-eslint/parser": "^2.22.0",
|
2018-12-04 13:12:33 +03:00
|
|
|
"shelljs": "^0.8.3",
|
2020-06-30 12:21:24 +03:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"mocha": "^8.0.1"
|
2018-12-04 13:12:33 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2019-06-20 15:06:18 +03:00
|
|
|
"postinstall": "cd protocol && npm install && cd ../tsc && npm install && cd ../npm && npm install && cd ../sqlite && 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",
|
2019-03-27 00:42:20 +03:00
|
|
|
"watch": "tsc -b ./tsconfig.json -w",
|
2019-08-26 15:12:33 +03:00
|
|
|
"watch:build": "cd build/azure-pipelines/tasks && tsc -p ./tsconfig.json -w",
|
2019-08-30 12:29:47 +03:00
|
|
|
"lint": "npm run lint:protocol && npm run lint:tsc && npm run lint:npm && npm run lint:sqlite",
|
|
|
|
"lint:protocol": "eslint --config ./protocol/.eslintrc.json ./protocol/src/*.ts",
|
|
|
|
"lint:tsc": "eslint --config ./tsc/.eslintrc.json ./tsc/src/*.ts",
|
|
|
|
"lint:npm": "eslint --config ./npm/.eslintrc.json ./npm/src/*.ts",
|
|
|
|
"lint:sqlite": "eslint --config ./sqlite/.eslintrc.json ./sqlite/src/*.ts",
|
|
|
|
"lint:util": "eslint --config ./util/.eslintrc.json ./util/src/*.ts",
|
2019-03-27 00:42:20 +03:00
|
|
|
"clean": "cd protocol && npm run clean && cd ../tsc && npm run clean && cd ../npm && npm run clean && cd ..",
|
2019-08-21 17:38:29 +03:00
|
|
|
"lsif-ts": "cd samples/typescript && node ../../tsc/lib/main.js -p ./tsconfig.json --outputFormat=line --stdout",
|
2019-03-27 00:42:20 +03:00
|
|
|
"lsif-ts-ref": "cd samples/typescript-ref && node ../../tsc/lib/main.js -p ./client/tsconfig.json --projectRoot . --outputFormat=line",
|
2019-06-20 15:06:18 +03:00
|
|
|
"lsif-js": "cd samples/javascript && node ../../tsc/lib/main.js -p ./jsconfig.json --outputFormat=line",
|
|
|
|
"test": "cd util && npm run test:ci && cd .."
|
2018-12-04 13:12:33 +03:00
|
|
|
}
|
|
|
|
}
|