-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 920 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 920 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
{
"name": "socketio_repeater",
"version": "0.0.1",
"description": "connect socket.io v1 clients to socket.io v2 server",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.json index.js lib/",
"lintfix": "eslint -c .eslintrc.json --fix index.js lib/",
"serve": "nodemon -w index.js index.js"
},
"dependencies": {
"express": "~4.16.4",
"socket.io": "~1.4.4",
"socket.io-client": "^2.2.0"
},
"private": true,
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/OpenSooq/socketio_repeater"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-google": ">=0.11.0",
"eslint-config-standard": ">=10.2.1",
"eslint-plugin-import": ">=2.2.0",
"eslint-plugin-node": ">=5.2.0",
"eslint-plugin-promise": ">=3.6.0",
"eslint-plugin-standard": ">=3.0.0",
"nodemon": ">=1.18.5"
}
}