forked from redhat-developer/rsp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rsp-client",
"version": "0.25.0",
"description": "Client Implementation of Runtime Server Protocol",
"main": "lib/src/main.js",
"types": "lib/src/main.d.ts",
"files": [
"lib/src/**/*.js",
"lib/src/**/*.d.ts"
],
"scripts": {
"prepare": "npm run build",
"build": "rimraf lib && tslint -p tslint.json && tsc",
"test": "nyc mocha",
"coverage:upload": "codecov -f coverage/*.json"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"lib",
"test",
"coverage"
],
"reporter": [
"json",
"html",
"text",
"lcov",
"text-summary"
],
"all": true,
"sourceMap": true,
"instrument": 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.6",
"@types/node": "^10.12.26",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.1.2",
"codecov": "^3.2.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"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-eslint-rules": "^5.4.0",
"typescript": "^3.3.3"
},
"dependencies": {
"vscode-jsonrpc": "^3.6.2"
}
}