-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
57
58
{
"name": "ekko-realtime-client",
"version": "2.3.2",
"description": "JavaScript client to interact with realtime ekko-server",
"main": "./lib/ekko.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "browserify ./dist/generateDistribution.js | uglifyjs -o ./dist/ekko-client-v$npm_package_version.js",
"watch": "watchify ./dist/generateDistribution.js -o ./dist/ekko-client-v$npm_package_version.js --debug --verbose",
"test": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekko-realtime/ekko-client.git"
},
"keywords": [
"ekko",
"realtime",
"websocket",
"socketio"
],
"author": "ekko",
"contributors": [
{
"name": "Alex Strick van Linschoten",
"github": "<https://github.com/strickvl>"
},
{
"name": "Dorey Miller",
"github": "<https://github.com/doreymiller>"
},
{
"name": "Drew Holbrook",
"github": "<https://github.com/dpholbrook>"
},
{
"name": "Will Lotherington",
"github": "<https://github.com/wLotherington>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ekko-realtime/ekko-client/issues"
},
"homepage": "https://github.com/ekko-realtime/ekko-client#readme",
"dependencies": {
"lil-uuid": "^0.1.1",
"socket.io-client": "^4.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"tap": "^15.0.6",
"uglify-js": "^3.13.4",
"watchify": "^4.0.0"
}
}