forked from socketio/engine.io-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.47 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
{
"name": "engine.io-client",
"description": "Client for the realtime Engine",
"license": "MIT",
"version": "4.1.1",
"main": "lib/index.js",
"homepage": "https://github.com/socketio/engine.io-client",
"contributors": [
{
"name": "Guillermo Rauch",
"email": "[email protected]"
},
{
"name": "Vladimir Dronnikov",
"email": "[email protected]"
},
{
"name": "Christoph Dorn",
"web": "https://github.com/cadorn"
},
{
"name": "Mark Mokryn",
"email": "[email protected]"
}
],
"dependencies": {
"base64-arraybuffer": "0.1.4",
"component-emitter": "~1.3.0",
"debug": "~4.3.1",
"engine.io-parser": "~4.0.1",
"has-cors": "1.1.0",
"parseqs": "0.0.6",
"parseuri": "0.0.6",
"ws": "~7.4.2",
"xmlhttprequest-ssl": "~1.5.4",
"yeast": "0.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"blob": "0.0.5",
"engine.io": "4.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"mocha": "^3.2.0",
"prettier": "^1.19.1",
"socket.io-browsers": "~1.0.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-remove-debug": "^0.1.0",
"zuul": "3.11.1",
"zuul-builder-webpack": "^1.2.0",
"zuul-ngrok": "4.0.0"
},
"scripts": {
"test": "npm run lint && npm run format:check && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi",
"test:node": "mocha --reporter dot --require test/support/server.js test/index.js",
"test:browser": "zuul test/index.js",
"build": "webpack --config ./support/webpack.config.js --config ./support/prod.config.js",
"format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js' 'support/**/*.js'",
"format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js' 'support/**/*.js'",
"lint": "eslint lib/**/*.js test/**/*.js"
},
"browser": {
"ws": false,
"xmlhttprequest-ssl": "./lib/xmlhttprequest.js",
"./lib/transports/websocket-constructor.js": "./lib/transports/websocket-constructor.browser.js",
"./lib/globalThis.js": "./lib/globalThis.browser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/socketio/engine.io-client.git"
},
"files": [
"index.js",
"lib/",
"dist/"
]
}