forked from tomi/vscode-rf-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.01 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
{
"version": "2.6.0",
"engines": {
"node": "8"
},
"scripts": {
"install": "npm run install-client && npm run install-server",
"install-client": "cd client && npm i",
"install-server": "cd server && npm i",
"lint": "npm run lint-client && npm run lint-server",
"lint-client": "cd client && npm run lint",
"lint-server": "cd server && npm run lint",
"test": "npm run test-client && npm run test-server",
"test-client": "cd client && npm run test",
"test-server": "cd server && npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tomi/vscode-rf-language-server.git"
},
"author": "Tomi Turtiainen <[email protected]>",
"bugs": {
"url": "https://github.com/tomi/vscode-rf-language-server/issues"
},
"homepage": "https://github.com/tomi/vscode-rf-language-server#readme",
"contributors": [
"Tomi Turtiainen <[email protected]>"
]
}