-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "blockcast",
"version": "2.0.1",
"description": "A multi-transaction protocol for storing data in the Bitcoin blockchain.",
"main": "./src/index.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node test/ --forceexit --verbose --captureExceptions",
"test-dev": "./node_modules/.bin/jasmine-node test/ --verbose --autotest --captureExceptions --color --watch src/"
},
"repository": {
"type": "git",
"url": "https://github.com/williamcotton/blockcast.git"
},
"keywords": [
"bitcoin",
"blockchain",
"message",
"decentralized",
"social",
"crypto",
"cryptocurrency"
],
"author": "William Cotton",
"license": "MIT",
"bugs": {
"url": "https://github.com/williamcotton/blockcast/issues"
},
"homepage": "https://github.com/williamcotton/blockcast",
"devDependencies": {
"blockcypher-unofficial": "^1.5.0",
"jasmine-node": "^1.14.5",
"mem-common-blockchain": "0.0.2",
"node-env-file": "^0.1.7",
"test-common-wallet": "^1.2.1"
},
"dependencies": {
"async": "^1.4.2",
"bitcoin-tx-hex-to-json": "0.0.3",
"bitcoinjs-lib": "^1.5.8"
}
}