forked from SocketCluster/socketcluster-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 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
{
"name": "socketcluster-client",
"description": "SocketCluster JavaScript client",
"version": "5.5.1",
"homepage": "http://socketcluster.io",
"contributors": [
{
"name": "Jonathan Gros-Dubois",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/SocketCluster/socketcluster-client.git"
},
"scripts": {
"build": "browserify -s socketCluster index.js > socketcluster.js; uglifyjs socketcluster.js -o socketcluster.min.js"
},
"dependencies": {
"base-64": "0.1.0",
"linked-list": "0.1.0",
"clone": "2.1.1",
"querystring": "0.2.0",
"sc-channel": "~1.0.6",
"sc-emitter": "~1.1.0",
"sc-errors": "~1.3.0",
"sc-formatter": "~3.0.0",
"ws": "3.0.0"
},
"browser": {
"ws": "./lib/ws-browser.js"
},
"readmeFilename": "README.md",
"license": "MIT",
"devDependencies": {
"browserify": "^13.3.0",
"uglify-js": "^2.7.5"
}
}