forked from dchest/tweetnacl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tweetnacl",
"version": "1.0.3",
"description": "Port of TweetNaCl cryptographic library to JavaScript",
"type": "module",
"main": "nacl-fast.js",
"types": "nacl.d.ts",
"exports": {
".": {
"import": "./nacl.js",
"require": "./nacl.cjs",
"types": "./nacl.d.ts"
},
"./fast": {
"import": "./nacl-fast.js",
"require": "./nacl-fast.js",
"types": "./nacl.d.ts"
}
},
"directories": {
"test": "test"
},
"scripts": {
"build": "uglifyjs nacl.js -c -m -o nacl.min.js && uglifyjs nacl-fast.js -c -m -o nacl-fast.min.js",
"test-node": "tape test/*.js | faucet",
"test-node-all": "make -C test/c && tape test/*.js test/c/*.js | faucet",
"build-test-browser": "browserify test/browser/init.js test/*.js -p esmify | uglifyjs -c -m -o test/browser/_bundle.js 2>/dev/null && browserify test/browser/init.js test/*.quick.js | uglifyjs -c -m -o test/browser/_bundle-quick.js 2>/dev/null",
"test": "npm run test-node-all",
"bench": "node test/benchmark/bench.js",
"lint": "eslint nacl.js nacl-fast.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": {
"browserify": "^16.5.2",
"eslint": "^8.56.0",
"esmify": "^2.1.1",
"faucet": "^0.0.4",
"prettier": "3.2.5",
"tap-browser-color": "^0.1.2",
"tape": "^5.7.5",
"tweetnacl-util": "^0.15.0",
"uglify-js": "^3.17.4"
},
"browser": {
"buffer": false,
"crypto": false
}
}