-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
40 lines (40 loc) · 958 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
39
40
{
"name": "bweb",
"version": "0.3.0",
"description": "Web bike-shed",
"keywords": [
"http",
"socket.io",
"websockets"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bweb.git",
"homepage": "https://github.com/bcoin-org/bweb",
"bugs": {
"url": "https://github.com/bcoin-org/bweb/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"main": "./lib/bweb.js",
"bin": {
"bweb": "./bin/bweb"
},
"scripts": {
"lint": "eslint lib/ test/",
"test": "bmocha --reporter spec test/*-test.js",
"test-ci": "nyc -a -n 'lib/**/*.js' --reporter=lcov --reporter=text npm run test"
},
"dependencies": {
"bsert": "~0.0.12",
"bsock": "~0.1.11"
},
"devDependencies": {
"bmocha": "^2.1.10"
},
"engines": {
"node": ">=8.0.0"
},
"browser": {
"./lib/server": "./lib/server-browser.js",
"./lib/middleware/index": "./lib/middleware/index-browser.js"
}
}