-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "socketio-shared-webworker",
"version": "1.1.0",
"description": "SocketIO client running inside a shared WebWorker thread",
"main": "index.js",
"scripts": {
"test": "start-server-and-test dev http://localhost:3000 test:mocha",
"test:e2e": "start-server-and-test dev http://localhost:3000 test:cypress",
"test:mocha": "mocha test/*.test.js",
"test:cypress": "npx cypress open",
"start": "node server.js",
"start:io": "node server.js",
"dev": "node example/dev-server.js",
"build": "webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/IguMail/socketio-shared-webworker.git"
},
"keywords": [
"socket.io",
"websocket",
"webworker"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/IguMail/socketio-shared-webworker/issues"
},
"homepage": "https://github.com/IguMail/socketio-shared-webworker#readme",
"dependencies": {
"debug": "^4.1.1",
"eventemitter3": "^1.2.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.1",
"eslint": "^7.0.0",
"eslint-plugin-react": "^3.6.2",
"expect.js": "^0.3.1",
"express": "^4.13.4",
"mocha": "^7.1.2",
"serve-favicon": "^2.5.0",
"sha-1": "^0.1.1",
"start-server-and-test": "^1.12.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}