You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
{
|
|
"name": "build-output-script",
|
|
"version": "0.0.0",
|
|
"description": "Builds a P2PKH Bitcoin transaction output script.",
|
|
"main": "src/index.js",
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && nyc ava",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"xo": {
|
|
"extends": "xo-lukechilds"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lukechilds/build-output-script.git"
|
|
},
|
|
"keywords": [
|
|
"bitcoin",
|
|
"outputscript",
|
|
"output",
|
|
"script",
|
|
"build"
|
|
],
|
|
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/build-output-script/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/build-output-script#readme",
|
|
"devDependencies": {
|
|
"ava": "^0.25.0",
|
|
"coveralls": "^3.0.2",
|
|
"eslint-config-xo-lukechilds": "^1.0.1",
|
|
"nyc": "^13.1.0",
|
|
"xo": "^0.23.0"
|
|
},
|
|
"dependencies": {
|
|
"bitcoin-ops": "^1.4.1",
|
|
"bs58check": "^2.1.2",
|
|
"varuint-bitcoin": "^1.1.0"
|
|
}
|
|
}
|
|
|