forked from microsoft/vscode-languageserver-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.61 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
{
"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": {
"typescript": "2.9.1",
"mocha": "^5.2.0",
"@types/node": "^6.0.88",
"@types/mocha": "^2.2.42",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"shx": "^0.2.2"
},
"scripts": {
"postinstall": "cd types && npm install && cd ../jsonrpc && npm install && cd ../protocol && npm install && cd ../server && npm install && cd ../client && npm install && cd ..",
"test": "cd types && npm test && cd ../jsonrpc && npm test && cd ../protocol && npm test && cd ../server && npm test && cd ../client && npm test && cd ..",
"symlink": "node ./build/bin/symlink.js",
"compile": "npm run compile:types && npm run compile:jsonrpc && npm run compile:protocol && npm run compile:server && npm run compile:client",
"compile:types": "tsc -p ./types/tsconfig.json",
"compile:jsonrpc": "tsc -p ./jsonrpc/tsconfig.json",
"compile:protocol": "tsc -p ./protocol/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"compile:client": "tsc -p ./client/tsconfig.json",
"watch:types": "tsc -w -p ./types/tsconfig.json",
"watch:jsonrpc": "tsc -w -p ./jsonrpc/tsconfig.json",
"watch:protocol": "tsc -w -p ./protocol/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json"
}
}