-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"name": "satoshi",
"version": "0.0.10",
"description": "Bitcoin core library for NodeJS and browsers",
"main": "./index.js",
"browser": "./dist/satoshi.js",
"contributors": [
"Ben Shepheard <ben@coinative.com>",
"Dan Howitt <dan@coinative.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi/issues"
},
"homepage": "https://github.com/coinative/satoshi",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dedupe": "npm dedupe . && rm -rf dist/*",
"build-umd": "./node_modules/.bin/browserify ./index.js -s bitcoin --o dist/satoshi.js && ./node_modules/.bin/uglifyjs ./dist/satoshi.js --output dist/satoshi-min.js --comments",
"build": "npm run dedupe && npm run build-umd"
},
"dependencies": {
"satoshi-address": "0.0.2",
"satoshi-base58": "0.0.3",
"satoshi-hash": "0.0.4",
"satoshi-hdkey": "0.0.2",
"satoshi-key": "0.0.2",
"satoshi-mnemonic": "0.0.2",
"satoshi-mskey": "0.0.2",
"satoshi-random": "0.0.3",
"satoshi-script": "0.0.2",
"satoshi-sjcl": "0.0.2"
},
"devDependencies": {
"browserify": "^4.1.8",
"uglify-js": "^2.4.13"
}
}