forked from bitpay/bitcore-payment-protocol
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "bitcore-payment-protocol",
"version": "1.2.1",
"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]"
}
],
"keywords": [
"bitcoin",
"bitcore"
],
"repository": {
"type": "git",
"url": "https://github.com/bitpay/bitcore-payment-protocol.git"
},
"browser": "lib/browser.js",
"dependencies": {
"asn1.js": "=4.5.2",
"bitcore-lib": "^0.14.0",
"jsrsasign": "=5.0.10",
"protobufjs": "=5.0.1"
},
"devDependencies": {
"bitcore-build": "git://github.com/bitpay/bitcore-build.git#a93a9970e3a0b3f948309730d4e4af5100dddf5a",
"brfs": "^1.2.0",
"chai": "~1.10.0",
"gulp": "^3.8.10",
"sinon": "^1.17.3"
},
"license": "MIT"
}