-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "hydrated-ws",
"version": "1.2.3",
"license": "Apache-2.0",
"description": "The toolbox for websockets clients, reconnecting websockets, channels muxing websockets, authentication, json-rpc over websockets",
"keywords": [
"websockets",
"websocket",
"json-rpc",
"json-rpc2",
"rpc",
"reconnecting",
"reconnection",
"reconnect",
"muxing",
"muxer",
"demuxer",
"authentication"
],
"repository": {
"type": "git",
"url": "https://github.com/dcharbonnier/hydrated-ws.git"
},
"bugs": {
"url": "http://github.com/dcharbonnier/hydrated-ws/issues"
},
"scripts": {
"doc": "typedoc",
"toc": "markdown-toc README.md -i --maxdepth 3",
"build": "tsc -p ./tsconfig.json --outDir dist/",
"test": "npm run test-node && npm run test-karma && npm run build && npm run test-typescript-compatibility",
"test-typescript-compatibility": "for version in 3.6.4 3.7.2; do ./test-typescript-compatibility.sh $version || exit 1;done;",
"test-server": "node --experimental-modules mock.mjs >/dev/null 2>&1 &",
"test-karma": "npm run test-server && karma start --single-run",
"test-phantom": "npm run test-server && karma start --single-run --browsers PhantomJS",
"test-chrome": "npm run test-server && karma start --single-run --browsers Chrome",
"test-node": "npm run test-server && nyc mocha --config ./mocharc.yml",
"lint": "tslint -c tslint.json -p . --fix",
"codecov": "codecov",
"prepublishOnly": "npm run build && npm run toc && npm run doc"
},
"nyc": {
"include": [
"src/**/*"
],
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"coverage/"
],
"reporter": [
"lcovonly",
"html"
],
"report-dir": "./coverage/nodejs",
"all": true
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "David Charbonnier",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/es6-promise": "^3.3.0",
"@types/karma": "^5.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.10",
"chai": "^4.2.0",
"codecov": "^3.8.0",
"es6-promise": "^4.2.8",
"forever": "^3.0.2",
"karma": "^6.3.16",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^3.1.0",
"karma-helpful-reporter": "^0.3.4",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-promise": "^0.1.0",
"karma-sauce-launcher": "^4.1.5",
"karma-typescript": "^5.2.0",
"karma-typescript-es6-transform": "^5.2.0",
"markdown-toc": "^1.2.0",
"mocha": "^8.2.0",
"mock-socket": "^9.0.3",
"nyc": "^15.1.0",
"puppeteer": "^5.3.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^4.0.3",
"ws": "^7.3.1"
}
}