-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "satoshi-key",
"version": "0.0.2",
"description": "Bitcoin key implementation for NodeJS and browsers",
"main": "lib/index.js",
"browser": {
"./lib/key-module.js": "./lib-browser/key-module.js"
},
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/satoshi-key.git"
},
"bugs": {
"url": "https://github.com/coinative/satoshi-key/issues"
},
"homepage": "https://github.com/coinative/satoshi-key",
"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-hash": "0.0.4",
"satoshi-sjcl": "0.0.2",
"nan": "^1.1.2"
}
}