-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (43 loc) · 930 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
{
"name": "ed2curve",
"version": "0.3.0",
"description": "Convert Ed25519 signing keys into Curve25519 Diffie-Hellman keys.",
"main": "ed2curve.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "uglifyjs ed2curve.js -c -m -o ed2curve.min.js",
"test": "faucet test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dchest/ed2curve-js"
},
"keywords": [
"ed25519",
"curve25519",
"djb",
"crypto",
"public",
"keys",
"edwards",
"montgomery",
"elliptic"
],
"author": "Dmitry Chestnykh",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/dchest/ed2curve-js/issues"
},
"homepage": "https://github.com/dchest/ed2curve-js",
"dependencies": {
"tweetnacl": "1.x.x"
},
"devDependencies": {
"faucet": "0.x.x",
"tape": "4.13.0",
"tweetnacl-util": "^0.15.0",
"uglify-js": "^3.7.5"
}
}