forked from microsoft/lsif-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "lsif-node",
"private": true,
"version": "0.6.0",
"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": {
"@types/node": "^12.12.29",
"@types/shelljs": "^0.8.8",
"@types/uuid": "^8.3.1",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"typescript": "^4.2.3",
"uuid": "^8.3.2"
},
"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 util && npm run test:ci && cd ../tsc && npm run test && cd ..",
"test:configs": "node ./build/bin/testConfigs.js ./configs"
}
}