-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
69 lines (69 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bitcoin-core",
"version": "4.2.0",
"description": "A modern Bitcoin Core REST and RPC client.",
"keywords": [
"bitcoin",
"bitcoind",
"client",
"request",
"rest",
"rpc"
],
"homepage": "https://github.com/ruimarinho/bitcoin-core",
"bugs": "https://github.com/ruimarinho/bitcoin-core/issues",
"license": "MIT",
"author": {
"name": "Rui Marinho",
"email": "[email protected]"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ruimarinho/bitcoin-core.git"
},
"scripts": {
"changelog": "github_changelog_generator --project bitcoin-core --user ruimarinho --no-issues --header-label='# Changelog' --future-release=$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"cover": "nyc --reporter=html --reporter=text npm test",
"dependencies": "docker-compose up -d bitcoind bitcoind-ssl bitcoind-username-only",
"lint": "eslint src test",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"testdocker": "docker-compose run --rm sut",
"version": "npm run changelog --future-release=$npm_package_version && git add -A CHANGELOG.md"
},
"dependencies": {
"@uphold/request-logger": "^2.0.0",
"debugnyan": "^1.0.0",
"json-bigint": "^1.0.0",
"lodash": "^4.0.0",
"request": "^2.53.0",
"semver": "^5.1.0",
"standard-error": "^1.1.0"
},
"devDependencies": {
"eslint": "4.11.0",
"eslint-config-uphold": "0.0.1",
"mocha": "^4.0.1",
"nock": "^9.1.0",
"nyc": "^11.3.0",
"pre-commit": "^1.1.2",
"should": "^13.1.3"
},
"engines": {
"node": ">=7"
},
"nyc": {
"include": [
"src/"
],
"instrument": false,
"report-dir": "./coverage",
"sourceMap": false
},
"options": {
"mocha": "--timeout 20000 --recursive --require should"
},
"pre-commit": [
"lint"
]
}