lsif-node/package.json

44 строки
1.4 KiB
JSON

{
"name": "lsif-node",
"private": true,
"version": "0.6.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/lsif-node.git"
},
"author": "MS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/lsif-node/issues"
},
"homepage": "https://microsoft.github.io/language-server-protocol/overviews/lsif/overview/",
"devDependencies": {
"@types/node": "20.9.0",
"@types/shelljs": "^0.8.15",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"rimraf": "^5.0.7",
"shelljs": "^0.8.5",
"typescript": "^5.5.2",
"uuid": "^10.0.0"
},
"scripts": {
"postinstall": "node ./build/bin/all.js install && npm run symlink && cd samples/typescript && npm install && cd ../javascript && npm install && cd ../..",
"symlink": "node ./build/bin/symlink.js",
"compile": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "node ./build/bin/all.js run lint",
"clean": "node ./build/bin/all.js run clean",
"test": "cd tsc && npm run test && cd ..",
"test:configs": "node ./build/bin/testConfigs.js ./configs",
"cleanAll": "git clean -xfd . && npm install && npm run symlink && npm run compile && npm run test",
"audit:all": "node ./build/bin/all.js audit",
"audit:all:fix": "node ./build/bin/all.js audit fix"
}
}