-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
45 lines (45 loc) · 969 Bytes
/
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
{
"name": "bitcore-ecies",
"version": "1.0.3",
"description": "ECIES implemented for Bitcore.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coverage": "gulp coverage",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "/~https://github.com/bitpay/bitcore-ecies.git"
},
"keywords": [
"bitcoin",
"bitcore",
"ecies",
"crypto",
"cryptography",
"encryption"
],
"author": "BitPay",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/bitpay/bitcore-ecies/issues"
},
"homepage": "/~https://github.com/bitpay/bitcore-ecies",
"devDependencies": {
"assert": "^1.1.2",
"bitcore-build": "git://github.com/bitpay/bitcore-build.git",
"brfs": "^1.2.0",
"browserify": "^8.1.0",
"chai": "~1.10.0",
"gulp": "^3.8.10"
},
"dependencies": {
"aes": "^0.1.0",
"bitcore-lib": "^0.14.0"
}
}