-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "@slonoed/jsref",
"description": "JavaScript refactoring language server",
"version": "1.1.15",
"author": "Dmitry Manannikov <[email protected]> (https://slonoed.net/)",
"license": "MIT",
"repository": "https://github.com/slonoed/jsref",
"keywords": [],
"publishConfig": {
"access": "public"
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile:client": "tsc -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"watch:all": "npm run watch:server & npm run watch:client",
"compile": "tsc -w -p ./tsconfig.json",
"postinstall": "vscode-install",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/jscodeshift": "^0.6.3",
"@types/minimist": "^1.2.1",
"@types/node": "^10.12.0",
"coc.nvim": "0.0.80",
"hosted-git-info": ">=3.0.8",
"jest": "^26.6.3",
"jest-raw-loader": "^1.0.1",
"prettier": "^1.19.1",
"ts-jest": "^26.5.5",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^4",
"vscode": "^1.1.36",
"vscode-languageclient": "^5.3.0-next.9"
},
"engines": {
"vscode": "^1.37.1"
},
"dependencies": {
"@types/ws": "^6.0.4",
"jscodeshift": "^0.6.4",
"minimist": "^1.2.0",
"vscode-languageserver": "^5.3.0-next.10",
"ws": "^7.4.5"
}
}