forked from NicolasFlamel1/Ed25519-NPM-Package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 914 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
{
"name": "@mwcproject/ed25519",
"version": "0.0.5",
"description": "NPM package for parts of SUPERCOP's Ed25519 implementation",
"main": "./index.js",
"files": [
"*",
"!main.cpp",
"!crypto_hash_sha512.c",
"!crypto_hash_sha512.h",
"!crypto_int32.h",
"!crypto_int64.h",
"!crypto_sign.h",
"!crypto_uint32.h",
"!crypto_uint64.h",
"!crypto_verify_32.c",
"!crypto_verify_32.h",
"!randombytes.c",
"!randombytes.h",
"!tests.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mwcproject/Ed25519-NPM-Package.git"
},
"keywords": [
"Ed25519"
],
"author": "Nicolas Flamel",
"license": "MIT",
"bugs": {
"url": "https://github.com/mwcproject/Ed25519-NPM-Package/issues"
},
"dependencies": {
"@nicolasflamel/ed25519-wasm": "^0.0.22"
},
"optionalDependencies": {
"@nicolasflamel/ed25519-native": "^0.0.19",
"@nicolasflamel/ed25519-react": "^0.0.9"
}
}