-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 952 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
{
"name": "reconnecting-socket",
"description": "WIP - nothing to see here",
"version": "2.0.1",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/little-core-labs/reconnecting-socket/issues"
},
"dependencies": {
"backoff": "^2.5.0"
},
"devDependencies": {
"dependency-check": "^4.1.0",
"npm-run-all2": "^5.0.0",
"simple-websocket": "^8.1.1",
"standard": "^13.1.0",
"tap": "^14.10.2"
},
"homepage": "https://github.com/little-core-labs/reconnecting-socket",
"keywords": [],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/little-core-labs/reconnecting-socket.git"
},
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check . --no-dev --no-peer",
"test:standard": "standard",
"test:tape": "tap"
},
"standard": {
"ignore": [
"dist"
]
}
}