-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
43
44
45
{
"name": "satoshi-base58",
"version": "0.0.3",
"description": "Bitcoin base58 functions implemented for NodeJS and browsers via SJCL and JSBN",
"main": "lib/index.js",
"browser": {
"bignum": "./lib-browser/bignum.js"
},
"contributors": [
"Ben Shepheard <ben@coinative.com>",
"Dan Howitt <dan@coinative.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-base58.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-base58/issues"
},
"homepage": "https://github.com/coinative/satoshi-base58",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./test/support/env -R dot ./test && ./node_modules/.bin/karma start",
"test-travis": "./node_modules/.bin/mocha -r ./test/support/env -R spec ./test && ./node_modules/.bin/karma start"
},
"devDependencies": {
"browserify": "^4.1.6",
"chai": "^1.9.1",
"karma": "^0.12.16",
"karma-browserify": "^0.2.1",
"karma-chai": "^0.1.0",
"karma-cli": "0.0.4",
"karma-mocha": "^0.1.3",
"karma-mocha-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^0.1.4",
"mocha": "^1.20.0",
"watchify": "^0.10.2"
},
"dependencies": {
"bigi": "^1.1.0",
"bignum": "^0.7.0",
"satoshi-hash": "0.0.4",
"inherits": "^2.0.1"
}
}