forked from dchest/tweetnacl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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
{
"name": "tweetnacl",
"version": "0.13.0",
"description": "Port of TweetNaCl cryptographic library to JavaScript",
"main": "nacl-fast.js",
"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": "tape test/*.js | faucet",
"testall": "make -C test/c && tape test/*.js test/c/*.js | faucet",
"browser": "browserify test/browser/init.js test/*.js | uglifyjs -c -m -o test/browser/_bundle.js 2>/dev/null",
"browser-quick": "browserify test/browser/init.js test/*.quick.js | uglifyjs -c -m -o test/browser/_bundle-quick.js 2>/dev/null",
"testling": "browserify test/browser/testling_init.js test/*.js | testling | faucet",
"firefox": "browserify test/browser/testling_init.js test/*.js | testling -x firefox | faucet",
"chrome": "browserify test/browser/testling_init.js test/*.js | testling -x google-chrome | faucet",
"bench": "node test/benchmark/bench.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
},
"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": "Public domain",
"bugs": {
"url": "https://github.com/dchest/tweetnacl-js/issues"
},
"homepage": "https://dchest.github.io/tweetnacl-js",
"devDependencies": {
"browserify": "4.x.x",
"faucet": "0.x.x",
"tap-browser-color": "0.x.x",
"tape": "2.x.x",
"testling": "1.x.x",
"uglify-js": "2.x.x"
}
}