-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 885 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 885 Bytes
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": "bsock",
"version": "0.1.11",
"description": "Websocket bike-shed",
"keywords": [
"tcp",
"http",
"socket.io",
"websockets"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bsock.git",
"homepage": "https://github.com/bcoin-org/bsock",
"bugs": {
"url": "https://github.com/bcoin-org/bsock/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"main": "./lib/bsock.js",
"scripts": {
"lint": "eslint lib/ test/socket-test.js",
"lint-types": "tsc -p .",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bsert": "~0.0.12"
},
"devDependencies": {
"bmocha": "^2.1.8",
"bts-type-deps": "^0.0.3"
},
"engines": {
"node": ">=8.0.0"
},
"browser": {
"./lib/backend": "./lib/backend-browser.js",
"./lib/server": "./lib/server-browser.js"
}
}