forked from cryptodev35/icashcore
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
135 lines (135 loc) · 3.41 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "darkcore",
"description": "Darkcoin Library based on Bitcore (https://github.com/bitpay/bitcore.git)",
"version": "0.1.41",
"author": {
"name": "UdjinM6",
"email": "[email protected]"
},
"contributors": [
{
"name": "John Willis",
"email": "[email protected]"
},
{
"name": "Stephen Pair",
"email": "[email protected]"
},
{
"name": "Stefan Thomas",
"email": "[email protected]"
},
{
"name": "Jeff Garzik",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
},
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Gordon Hall",
"email": "[email protected]"
},
{
"name": "Esteban Ordano",
"email": "[email protected]"
}
],
"keywords": [
"darkcoin",
"drk",
"satoshi",
"money",
"currency",
"virtual"
],
"main": "bitcore.js",
"repository": {
"type": "git",
"url": "https://github.com/udjinm6/darkcore.git"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "node browser/build.js -a && node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter spec test",
"prepublish": "node browser/build.js -a"
},
"dependencies": {
"asn1.js": "0.4.1",
"async": "~0.2.10",
"bignum": "=0.6.2",
"bindings": "=1.1.1",
"binary": "^0.3.0",
"bn.js": "=0.15.0",
"brfs": "=1.0.0",
"bufferput": "git://github.com/bitpay/node-bufferput.git",
"buffers": "=0.1.1",
"buffertools": "=2.1.2",
"browserify-buffertools": "git://github.com/maraoz/browserify-buffertools.git",
"elliptic": "=0.15.12",
"hash.js": "=0.3.2",
"jsrsasign": "=0.0.3",
"preconditions": "^1.0.7",
"protobufjs": "=3.0.0",
"sjcl": "=1.0.1",
"socks5-client": "~0.3.6",
"x11-hash": "0.0.2"
},
"testling": {
"harness": "mocha-bdd",
"html": "test/index-testling.html",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"browser": {
"bignum": "./lib/browser/Bignum.js",
"buffertools": "browserify-buffertools",
"./lib/Key.js": "./lib/browser/Key.js",
"./lib/Point.js": "./lib/browser/Point.js",
"./lib/ECIES.js": "./lib/browser/ECIES.js",
"./lib/SecureRandom.js": "./lib/browser/SecureRandom.js",
"./lib/PayPro.js": "./lib/browser/PayPro.js"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"devDependencies": {
"browserify": "=3.40.0",
"chai": "=1.9.1",
"commander": "~2.2.0",
"coveralls": "^2.10.0",
"event-stream": "~3.1.5",
"express": "4.6.1",
"grunt-browserify": "~2.0.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-markdown": "~0.5.0",
"grunt-mocha-test": "~0.8.2",
"grunt-shell": "~0.6.4",
"gulp": "~3.8.2",
"gulp-concat": "~2.2.0",
"istanbul": "~0.2.6",
"mocha": ">=1.15.1",
"optimist": "0.6.1",
"request": "2.39.0",
"sinon": "^1.10.3",
"uglifyify": "=1.2.3"
}
}