forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 1.86 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bitcore",
"version": "4.1.0",
"description": "A platform to build bitcoin and blockchain-based applications.",
"author": "BitPay <[email protected]>",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/** --recursive",
"build-deb": "./scripts/build-deb"
},
"bin": {
"bitcore": "./bin/bitcore",
"bitcored": "./bin/bitcored"
},
"contributors": [
{
"name": "Daniel Cousens",
"email": "[email protected]"
},
{
"name": "Esteban Ordano",
"email": "[email protected]"
},
{
"name": "Gordon Hall",
"email": "[email protected]"
},
{
"name": "Jeff Garzik",
"email": "[email protected]"
},
{
"name": "Kyle Drake",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
},
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Stefan Thomas",
"email": "[email protected]"
},
{
"name": "Stephen Pair",
"email": "[email protected]"
},
{
"name": "Wei Lu",
"email": "[email protected]"
}
],
"keywords": [
"bitcoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
},
"browser": {
"request": "browser-request"
},
"dependencies": {
"bitcore-lib": "^0.13.14",
"bitcore-node": "~3.1.0",
"insight-api": "^0.4.0",
"insight-ui": "^0.4.0"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.3.0",
"mocha": "^2.3.3"
}
}