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,
|
2021-04-23 16:23:10 +03:00
|
|
|
"version": "0.6.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",
|
2021-04-06 14:44:49 +03:00
|
|
|
"@types/yargs": "^16.0.1",
|
2021-03-27 13:01:06 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.19.0",
|
|
|
|
"@typescript-eslint/parser": "^4.19.0",
|
|
|
|
"eslint": "^7.23.0",
|
|
|
|
"mocha": "^8.3.2",
|
2020-06-30 12:21:24 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2021-02-04 17:56:04 +03:00
|
|
|
"shelljs": "^0.8.4",
|
2021-03-27 13:01:06 +03:00
|
|
|
"typescript": "^4.2.3"
|
2018-12-04 13:12:33 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-02-10 19:51:20 +03:00
|
|
|
"postinstall": "node ./build/bin/all.js install && 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",
|
2021-02-10 19:51:20 +03:00
|
|
|
"lint": "node ./build/bin/all.js run lint",
|
|
|
|
"clean": "node ./build/bin/all.js run clean",
|
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
|
|
|
}
|
|
|
|
}
|