forked from EricGrill/chainbyteswallet
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 982 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 982 Bytes
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": "chainbyteswallet",
"version": "0.1.21",
"description": "Simple Standalone Bitcoin Wallet",
"main": "index.js",
"scripts": {
"start": "node ./src/wallet.js",
"sendtest": "nodemon ./examples/simpleSend.js",
"test": "mocha"
},
"homepage": "http://chainbytes.com",
"repository": {
"type": "git",
"url": "git://github.com/chainbytes/chainbyteswallet.git"
},
"keywords": [
"bitcoin",
"wallet",
"chainbytes",
"blockchain",
"opcode",
"opreturn"
],
"author": "Eric Grill",
"license": "GPL-3.0",
"dependencies": {
"bitcoinjs-lib": "^5.1.6",
"blockchain.info": "^2.12.1",
"dot-env": "0.0.1",
"request": "^2.88.0",
"winston": "^2.3.1"
},
"engines": {
"node": ">=7.6"
},
"devDependencies": {
"chai": "^4.0.2",
"dotenv": "^8.2.0",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-publish": "^1.0.0",
"grunt-release": "^0.14.0",
"mocha": "^3.4.2"
}
}