forked from redhat-developer/rsp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
56
57
58
59
60
61
62
63
64
65
{
"name": "rsp-client",
"version": "0.0.4",
"description": "Client Implementation of Runtime Server Protocol",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tslint -p tslint.json && tsc",
"test": "nyc mocha",
"coverage:upload": "codecov -f coverage/*.json",
"update-deps": "node_modules/.bin/ncu --upgrade --loglevel verbose --packageFile package.json && npm update"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"lib",
"test",
"coverage"
],
"reporter": [
"json",
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-developer/rsp-client.git"
},
"keywords": [
"runtime",
"server",
"adapters",
"protocol"
],
"author": "Red Hat Developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/redhat-developer/rsp-client/issues"
},
"homepage": "https://github.com/redhat-developer/rsp-client#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"codecov": "^3.0.4",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.8",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^3.0.1",
"vscode-jsonrpc": "^3.6.2"
}
}