This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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
{
"name": "reconnect-websocket",
"version": "1.0.0",
"description": "auto reconent websocket package",
"main": "dist/reconnect-websocket.js",
"types": "./types/ReconnectWebsocket.d.ts",
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "cross-env NODE_ENV=production karma start ./karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fingerpan/reconnect-websocket.git"
},
"keywords": [
"reconnect",
"socket",
"websocket"
],
"author": "youngpan",
"license": "MIT",
"bugs": {
"url": "https://github.com/fingerpan/reconnect-websocket/issues"
},
"homepage": "https://github.com/fingerpan/reconnect-websocket#readme",
"devDependencies": {
"@types/jasmine": "^3.3.12",
"@types/node": "^12.0.2",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"buble": "^0.16.0",
"cross-env": "^5.2.0",
"eslint": "^4.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.16.2",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^4.0.0",
"mock-socket": "^8.0.5",
"nodejs-websocket": "^1.7.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-watch": "^4.0.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5",
"uglify-js": "^3.1.3"
}
}