-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 KB
/
package.json
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
46
47
48
49
{
"name": "satoshi-hdkey",
"version": "0.0.2",
"description": "Bitcoin hierarchical deterministic key implementation for NodeJS and browsers",
"main": "lib/index.js",
"browser": {
"./lib/derive-module.js": "./lib-browser/derive-module.js"
},
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-hdkey.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-hdkey/issues"
},
"homepage": "https://github.com/coinative/satoshi-hdkey",
"license": "MIT",
"scripts": {
"install": "node-gyp rebuild",
"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": {
"bindings": "^1.2.0",
"satoshi-address": "0.0.2",
"satoshi-base58": "0.0.3",
"satoshi-hash": "0.0.4",
"satoshi-key": "0.0.2",
"satoshi-sjcl": "0.0.2",
"nan": "^1.1.2"
}
}