forked from dchest/tweetnacl-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 976 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
{
"name": "tweetnacl-es6",
"version": "1.0.3",
"description": "Port of TweetNaCl cryptographic library to JavaScript es6",
"main": "nacl-fast-es.js",
"module": "nacl-fast-es.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test-all": "node test/test-all.js",
"test-quick": "node test/test-quick.js",
"test-browser": "node test/browser-quick-start.mjs /test/browser/index.html",
"bench": "node test/benchmark/bench.js",
"bench-browser": "node test/browser-quick-start.mjs /test/benchmark/bench.html"
},
"repository": {
"type": "git",
"url": "https://github.com/hakanols/tweetnacl-es6"
},
"keywords": [
"crypto",
"cryptography",
"curve25519",
"ed25519",
"encrypt",
"hash",
"key",
"nacl",
"poly1305",
"public",
"salsa20",
"signatures"
],
"author": "TweetNaCl-js contributors",
"license": "Unlicense",
"homepage": "https://tweetnacl.js.org"
}