forked from microsoft/vscode-languageserver-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.99 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"name": "vscode-lsp",
"description": "VSCode Language Server Protocol Implementation",
"version": "1.0.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/mocha": "^9.0.0",
"@types/node": "12.12.12",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"assert": "^2.0.0",
"eslint": "^7.30.0",
"http-server": "^13.0.2",
"mocha": "^9.1.3",
"playwright": "^1.15.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"typescript": "^4.5.2",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"scripts": {
"postinstall": "node ./build/bin/all.js install && cd testbed && npm install && cd .. && npm run symlink:testbed",
"test": "node ./build/bin/all.js run test",
"clean": "node ./build/bin/all.js run clean",
"symlink": "node ./build/bin/symlink.js",
"symlink:tests": "node ./build/bin/symlink-tests.js",
"symlink:testbed": "node ./build/bin/symlink-testbed.js",
"compile": "tsc -b tsconfig.json",
"compile:types": "tsc -b ./types/tsconfig.json",
"compile:textDocument": "tsc -b ./textDocument/tsconfig.json",
"compile:jsonrpc": "tsc -b ./jsonrpc/tsconfig.json",
"compile:protocol": "tsc -b ./protocol/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:client-node-tests": "tsc -b ./client-node-tests/tsconfig.json",
"compile:testbed": "tsc -b ./testbed/tsconfig.json",
"watch": "tsc -b tsconfig-watch.json -w",
"watch:testbed": "tsc -b ./testbed/tsconfig.json -w",
"lint": "node ./build/bin/all.js run lint",
"all": "npm run symlink && npm run compile && npm run test",
"rebuildAll": "npm run clean && npm run symlink && npm run compile && npm run test"
}
}