-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"name": "bitcoinjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify -r . --standalone bitcoinjs > bitcoin.js && uglifyjs -c --mangle reserved=['BigInteger','ECPair','Point'] bitcoin.js > bitcoin.min.js && rollup -c"
},
"author": "",
"license": "ISC",
"dependencies": {
"bip32": "^2.0.6",
"bip38": "^3.1.1",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"bitcoinjs-message": "^2.2.0",
"browserify": "^17.0.0",
"eccrypto": "^1.1.6",
"i": "^0.3.7",
"npm": "^8.2.0",
"rollup": "^2.58.0",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"rollup-plugin-terser": "^7.0.2"
}
}