forked from microsoft/vscode-languageserver-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 3.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"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/node": "12.12.12",
"@types/assert": "^1.5.2",
"@types/mocha": "^8.0.4",
"@typescript-eslint/parser": "^4.9.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"assert": "^2.0.0",
"eslint": "^7.15.0",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"playwright": "^1.6.2",
"http-server": "^0.12.3"
},
"scripts": {
"postinstall": "cd types && npm install && cd ../textDocument && npm install && cd ../jsonrpc && npm install && cd ../protocol && npm install && cd ../server && npm install && cd ../client && npm install && cd ../client-node-tests && npm install && cd ..",
"test": "cd types && npm test && cd ../textDocument && npm test && cd ../jsonrpc && npm test && cd ../protocol && npm test && cd ../server && npm test && cd ../client-node-tests && npm test && cd ..",
"clean": "cd types && npm run clean && cd ../textDocument && npm run clean && cd ../jsonrpc && npm run clean && cd ../protocol && npm run clean && cd ../server && npm run clean && cd ../client && npm run clean && cd ../client-node-tests && npm run clean && cd ..",
"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": "npm run lint:types && npm run lint:textDocument && npm run lint:jsonrpc && npm run lint:protocol && npm run lint:server && npm run lint:client && npm run lint:client-node-tests",
"lint:types": "eslint --config ./types/.eslintrc.json ./types/src/*.ts",
"lint:textDocument": "eslint --config ./textDocument/.eslintrc.json ./textDocument/src/*.ts",
"lint:jsonrpc": "eslint --config ./jsonrpc/.eslintrc.json ./jsonrpc/src/**/*.ts",
"lint:protocol": "eslint --config ./protocol/.eslintrc.json ./protocol/src/**/*.ts",
"lint:server": "eslint --config ./server/.eslintrc.json ./server/src/**/*.ts",
"lint:client": "eslint --config ./client/.eslintrc.json ./client/src/**/*.ts",
"lint:client-node-tests": "eslint --config ./client-node-tests/.eslintrc.json ./client-node-tests/src/**/*.ts",
"all": "npm run symlink && npm run compile && npm run test",
"rebuildAll": "npm run clean && npm run symlink && npm run compile && npm run test"
},
"dependencies": {}
}