forked from czervenka/ws-proxy-poc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 816 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 816 Bytes
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": "karmen_ws",
"version": "1.0.10",
"description": "",
"main": "client",
"scripts": {
"test": "ava",
"coverage": "nyc ava",
"lint": "eslint .",
"client": "node client",
"server": "node server"
},
"author": "",
"license": "proprietary",
"dependencies": {
"@sentry/node": "^7.0.0",
"merge": "^2.1.1",
"ws": "^7.2.1"
},
"@comment devDependencies": {
"ava": "testing framework",
"nock": "request mock"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.8.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"mock-require": "^3.0.3",
"nock": "^12.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^9.0.0"
},
"ava": {
"babel": true
}
}