forked from dchest/tweetnacl-js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.22 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": "@openpgp/tweetnacl",
"version": "1.0.4-1",
"description": "Port of TweetNaCl cryptographic library to JavaScript",
"type": "module",
"main": "nacl-fast.js",
"types": "nacl.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test-node": "tape-es 'test/*.js' -t 1 | tap-summary",
"test": "npm run test-node",
"bench": "node test/benchmark/bench.js",
"lint": "eslint *.js test/*.js test/benchmark/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dchest/tweetnacl-js.git"
},
"keywords": [
"crypto",
"cryptography",
"curve25519",
"ed25519",
"encrypt",
"hash",
"key",
"nacl",
"poly1305",
"public",
"salsa20",
"signatures"
],
"author": "TweetNaCl-js contributors",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/dchest/tweetnacl-js/issues"
},
"homepage": "https://tweetnacl.js.org",
"devDependencies": {
"eslint": "^8.51.0",
"tap-browser-color": "^0.1.2",
"tap-summary": "^4.0.0",
"tape-es": "^1.2.17",
"tweetnacl-util": "^0.15.0"
},
"browser": {
"./crypto.js": "./cryptoBrowser.js",
"buffer": false,
"crypto": false,
"node:crypto": false
}
}