forked from bitpay/bitcore-payment-protocol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.55 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
{
"name": "bitcore-payment-protocol",
"version": "1.5.0",
"description": "Payment Protocol (BIP70 and related) support for bitcore",
"author": "BitPay <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coverage": "gulp coverage",
"build": "gulp",
"rootcerts": "node ./update-rootcerts.js"
},
"contributors": [
{
"name": "Christopher Jeffrey",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Linus Unnebäck",
"email": "[email protected]"
},
{
"name": "Esteban Ordano",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
}
],
"keywords": [
"bitcoin",
"bitcore",
"payment protocol",
"BIP70"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore-payment-protocol.git"
},
"browser": "lib/browser.js",
"dependencies": {
"asn1.js": "=4.9.1",
"asn1.js-rfc3280": "=4.0.0",
"asn1.js-rfc5280": "=2.0.0",
"bitcore-lib": "^0.15.0",
"bs58": "^4.0.1",
"jsrsasign": "^8.0.4",
"protobufjs": "=5.0.1"
},
"devDependencies": {
"bitcore-build": "https://github.com/bitpay/bitcore-build.git#d4e8b2b2f1e2c065c3a807dcb6a6250f61d67ab3",
"brfs": "^1.2.0",
"chai": "~1.10.0",
"gulp": "^3.8.10",
"sinon": "^1.17.3"
},
"license": "MIT"
}