-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1012 Bytes
/
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
{
"name": "catberry-socket.io",
"description": "Catberry adapter for Socket.io engine",
"version": "1.1.1",
"author": {
"email": "[email protected]",
"name": "Miha Vizovišek"
},
"contributors": [
{
"email": "[email protected]",
"name": "Miha Vizovišek"
}
],
"homepage": "http://socket.io/",
"main": "./index.js",
"browser": {
"./lib/Socket.ioProvider.js": "./browser/Socket.ioProvider.js",
"./lib/socket.io.js": "./browser/socket.io.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catberry/catberry-socket.io.git"
},
"keywords": [
"socket.io",
"websockets",
"real time",
"catberry"
],
"dependencies": {
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"peerDependencies": {
"catberry": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"eslint": "^3.18.0"
},
"scripts": {
"lint-fix": "eslint ./ --fix",
"test": "eslint ./"
},
"license": "MIT",
"engine": {
"node": ">=4"
},
"readmeFilename": "README.md"
}