forked from trezor-graveyard/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "ravencore",
"version": "1.0.3",
"description": "A platform to build ravencoin and blockchain-based applications.",
"author": "Under",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/** --recursive"
},
"bin": {
"ravencore": "./bin/ravencore",
"ravencored": "./bin/ravencored"
},
"keywords": [
"ravencoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/underdarkskies/ravencore.git"
},
"browser": {
"request": "browser-request"
},
"dependencies": {
"ravencore-lib": "underdarkskies/ravencore-lib",
"ravencore-node": "underdarkskies/ravencore-node",
"insight-api": "underdarkskies/insight-api",
"insight-ui": "underdarkskies/insight-ui"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3"
}
}