forked from ruimarinho/bitcoin-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.38 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bitcoin-core",
"version": "2.1.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": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ruimarinho/bitcoin-core.git"
},
"scripts": {
"changelog": "github_changelog_generator --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",
"prepublish": "npm run transpile",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"testdocker": "docker-compose run --rm sut",
"transpile": "rm -rf dist/* && babel src --out-dir dist/src",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"dependencies": {
"@uphold/request-logger": "^2.0.0",
"bluebird": "^3.4.1",
"debugnyan": "^1.0.0",
"json-bigint": "^0.2.0",
"lodash": "^4.0.0",
"request": "^2.53.0",
"semver": "^5.1.0",
"standard-error": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.32",
"@babel/core": "7.0.0-beta.32",
"@babel/plugin-transform-async-to-generator": "7.0.0-beta.32",
"@babel/polyfill": "7.0.0-beta.32",
"@babel/preset-env": "7.0.0-beta.32",
"@babel/register": "7.0.0-beta.32",
"babel-eslint": "^8.0.0",
"babel-plugin-istanbul": "^4.1.5",
"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": ">=4"
},
"nyc": {
"include": [
"src/"
],
"instrument": false,
"report-dir": "./coverage",
"sourceMap": false
},
"options": {
"mocha": "--require @babel/register --require @babel/polyfill --timeout 20000 --recursive --require should"
},
"pre-commit": [
"lint"
]
}