forked from dazoe/ed25519
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "@pokt-network/ed25519",
"version": "0.0.1",
"description": "Pocket Network fork of the dazoe/ed25519 library with support for Node 12.15",
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.0.9"
},
"engine": {
"node": ">=10.19.0 <=12.15.0"
},
"main": "index.js",
"scripts": {
"install": "node-gyp configure && node-gyp build",
"test": "mocha"
},
"keywords": [
"pocket",
"Ed25519",
"elliptic",
"curve",
"crypto",
"Curve25519",
"EdDSA"
],
"author": "Dave Akers",
"authors": [
{
"name": "Pabel Nunez Landestoy",
"email": "[email protected]",
"homepage": "https://github.com/pabelnl"
},
{
"name": "Luis C. de León",
"email": "[email protected]",
"homepage": "https://github.com/luyzdeleon"
},
{
"name": "Wilson Garcia",
"email": "[email protected]",
"homepage": "https://github.com/wgarcia4190"
},
{
"name": "Alex Firmani",
"email": "[email protected]",
"homepage": "https://github.com/nymd"
}
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/pokt-network/ed25519.git"
}
}