-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 905 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
{
"name": "ecies",
"version": "0.1.0",
"description": "A Node.js ECIES implementation.",
"keywords": [
"ecies",
"crypto"
],
"homepage": "https://github.com/bardiharborow/node-ecies",
"bugs": {
"url": "https://github.com/bardiharborow/node-ecies/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Bardi Harborow <[email protected]> (http://www.bardiharborow.com/)",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/bardiharborow/node-ecies.git"
},
"scripts": {
"test": "expresso test.js"
},
"dependencies": {
"cryptopp": "https://github.com/Mowje/node-cryptopp/tarball/master"
},
"devDependencies": {
"expresso": "0.9.2"
},
"engines": {
"node": "<=0.10"
}
}