Specify version to help prevent large diffs

This commit is contained in:
junderw 2019-01-15 17:48:10 +09:00
parent 1732bafbc1
commit c143e9c855
No known key found for this signature in database
GPG key ID: B256185D3A971908
2 changed files with 4 additions and 3 deletions

View file

@ -15,7 +15,7 @@
"bitcoinjs" "bitcoinjs"
], ],
"scripts": { "scripts": {
"build": "tsc -d -p ./tsconfig.json", "build": "tsc -p ./tsconfig.json",
"coverage-report": "npm run build && npm run nobuild:coverage-report", "coverage-report": "npm run build && npm run nobuild:coverage-report",
"coverage-html": "npm run build && npm run nobuild:coverage-html", "coverage-html": "npm run build && npm run nobuild:coverage-html",
"coverage": "npm run build && npm run nobuild:coverage", "coverage": "npm run build && npm run nobuild:coverage",
@ -39,7 +39,7 @@
"src" "src"
], ],
"dependencies": { "dependencies": {
"@types/node": "^10.12.18", "@types/node": "10.12.18",
"bech32": "^1.1.2", "bech32": "^1.1.2",
"bip32": "git+https://github.com/junderw/bip32.git#typeScript", "bip32": "git+https://github.com/junderw/bip32.git#typeScript",
"bip66": "^1.1.0", "bip66": "^1.1.0",
@ -52,7 +52,7 @@
"randombytes": "^2.0.1", "randombytes": "^2.0.1",
"tiny-secp256k1": "^1.0.0", "tiny-secp256k1": "^1.0.0",
"typeforce": "^1.11.3", "typeforce": "^1.11.3",
"typescript": "^3.2.2", "typescript": "3.2.2",
"varuint-bitcoin": "^1.0.4", "varuint-bitcoin": "^1.0.4",
"wif": "^2.0.1" "wif": "^2.0.1"
}, },

View file

@ -3,6 +3,7 @@
"target": "ES2015", "target": "ES2015",
"module": "commonjs", "module": "commonjs",
"outDir": "./src", "outDir": "./src",
"declaration": true,
"declarationDir": "./types", "declarationDir": "./types",
"rootDir": "./ts_src", "rootDir": "./ts_src",
"types": [ "types": [