-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bhn",
"version": "0.0.2",
"description": "Bitcoin Header Node- A lightweight node for syncing only bitcoin block headers from a specific height",
"main": "lib/index.js",
"repository": "git://github.com/chainpoint/bitcoin-header-node.git",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint lib/*.js test/*.js",
"test": "nyc mocha --reporter spec test/*-test.js",
"test:watch": "mocha --reporter spec --watch test/*-test.js",
"test:inspect": "mocha --reporter spec --inspect-brk --watch test/*-test.js"
},
"author": "bucko",
"license": "MIT",
"bin": {
"bhn": "./bin/bhn"
},
"dependencies": {
"bclient": "^0.1.7",
"bcoin": "bcoin-org/bcoin",
"bcurl": "^0.1.6",
"bdb": "^1.1.7",
"bfile": "^0.2.0",
"bmutex": "^0.1.6",
"bsert": "^0.0.9",
"bufio": "^1.0.5",
"bweb": "^0.1.8"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": ">=8",
"mocha": "^6.0.2",
"nyc": "^14.0.0",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}