-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "webresock",
"version": "0.0.0",
"description": "Yet another reconnecting WebSocket using reconnect-core",
"main": "webresock.js",
"scripts": {
"check": "standard src test",
"make": "browserify --outfile webresock.js --require ./src/webresock --standalone webresock",
"test": "npm run check && npm run make && node test",
"bower": "bower"
},
"repository": {
"type": "git",
"url": "https://github.com/gautaz/webresock.git"
},
"keywords": [
"reconnect",
"websocket",
"backoff"
],
"author": "Gautaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/gautaz/webresock/issues"
},
"homepage": "https://github.com/gautaz/webresock#readme",
"dependencies": {},
"devDependencies": {
"body-parser": "^1.15.2",
"bower": "^1.7.9",
"browserify": "^13.1.0",
"express": "^4.14.0",
"reconnect-core": "^1.3.0",
"selenium-standalone": "^5.7.2",
"standard": "^8.3.0",
"tape": "^4.6.2",
"webdriverio": "^4.2.16"
}
}