UNPKG

679 BJSONView Raw
1{
2 "name": "btcp",
3 "version": "0.1.5",
4 "description": "TCP wrapper for node.js",
5 "keywords": [
6 "net",
7 "tcp"
8 ],
9 "license": "MIT",
10 "repository": "git://github.com/bcoin-org/btcp.git",
11 "homepage": "https://github.com/bcoin-org/btcp",
12 "bugs": {
13 "url": "https://github.com/bcoin-org/btcp/issues"
14 },
15 "author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
16 "main": "./lib/btcp.js",
17 "scripts": {
18 "lint": "eslint lib/ test/ || exit 0",
19 "test": "bmocha --reporter spec test/*-test.js"
20 },
21 "devDependencies": {
22 "bmocha": "^2.1.0"
23 },
24 "engines": {
25 "node": ">=8.0.0"
26 },
27 "browser": {
28 "./lib/tcp": "./lib/tcp-browser.js"
29 }
30}