-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathpackage.json
117 lines (117 loc) · 2.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "bitcore",
"version": "0.8.5",
"description": "A pure and powerful JavaScript Bitcoin library.",
"author": "BitPay <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coverage": "gulp coverage",
"build": "gulp",
"postinstall": "node ./lib/errors/build.js"
},
"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",
"bip32",
"bip37",
"bip70",
"merge",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore.git"
},
"dependencies": {
"asn1.js": "=0.4.1",
"bn.js": "=0.15.2",
"bs58": "=2.0.0",
"bufferput": "^0.1.2",
"buffers": "^0.1.1",
"elliptic": "=0.15.14",
"hash.js": "=0.3.2",
"inherits": "=2.0.1",
"jsrsasign": "=0.0.3",
"lodash": "=2.4.1",
"protobufjs": "=3.0.0",
"sha512": "=0.0.1",
"socks5-client": "^0.3.6"
},
"devDependencies": {
"brfs": "1.2.0",
"browserify": "~6.3.3",
"chai": "~1.10.0",
"closure-compiler-jar": "git://github.com/eordano/closure-compiler-jar.git",
"gulp": "^3.8.10",
"gulp-bump": "^0.1.11",
"gulp-closure-compiler": "^0.2.9",
"gulp-coveralls": "^0.1.3",
"gulp-git": "^0.5.5",
"gulp-jshint": "^1.9.0",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-shell": "^0.2.10",
"gulp-uglify": "^1.0.2",
"gulp-util": "=3.0.1",
"istanbul": "^0.3.5",
"jsdoc": "^3.3.0-alpha11",
"jsdoc-to-markdown": "=0.5.9",
"karma": "^0.12.28",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.9",
"mocha": "~2.0.1",
"more-fs": "=0.5.0",
"plato": "^1.3.0",
"run-sequence": "^1.0.2",
"sinon": "^1.12.2",
"through2": "=0.6.3"
},
"license": "MIT"
}