-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1018 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
{
"name": "socket-redis",
"version": "3.1.1",
"description": "Redis to SockJS relay",
"main": "socket-redis.js",
"bin": {
"socket-redis": "./bin/socket-redis.js"
},
"repository": "",
"keywords": [
"redis",
"sockjs",
"relay",
"bridge"
],
"author": "Cargomedia",
"license": "BSD",
"scripts": {
"test": "$(npm bin)/mocha"
},
"browserify": {
"transform": "browserify-shim"
},
"browserify-shim": {
"sockjs-client": "global:SockJS"
},
"dependencies": {
"bluebird": "^3.4.7",
"log4js": "~0.6.21",
"optimist": "~0.6.1",
"redis": "~0.12.1",
"sockjs": "0.3.17",
"underscore": "~1.7.0",
"uuid": "^3.0.1",
"validator": "~3.22.1"
},
"devDependencies": {
"app-root-path": "^2.0.1",
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"child-process-promise": "^2.0.3",
"mocha": "^2.5.3",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"sockjs-client": "^1.1.1"
}
}