-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
37 lines (37 loc) · 876 Bytes
/
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
{
"name": "bitcoin-wallet-node",
"main": "./index.js",
"description": "Bitcoin wallet.dat key exporter",
"author": "Chris Kleeschulte <[email protected]>",
"keywords": [
"bitcoin",
"wallet",
"wallet.dat",
"key",
"master key",
"binding"
],
"bugs": {
"url": "https://github.com/kleetus/bitcoin-wallet-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleetus/bitcoin-wallet-node.git"
},
"homepage": "https://github.com/kleetus/bitcoin-wallet-node#readme",
"version": "0.0.3",
"license": "MIT",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp rebuild",
"test": "mocha -R spec test"
},
"dependencies": {
"nan": "*",
"streaming-worker-sdk": "kleetus/streaming-worker"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}