-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 859 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
{
"name": "chacha",
"version": "2.1.0",
"description": "ChaCha20 Poly1305 auth cipher with a node api with pure js and native bindings",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "tape test/*.js | tspec"
},
"keywords": [
"chacha20",
"chacha",
"poly1305",
"cipher",
"hmac",
"crypto"
],
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/chacha20poly1305.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinmetcalf/chacha20poly1305/issues"
},
"homepage": "https://github.com/calvinmetcalf/chacha20poly1305",
"devDependencies": {
"tap-spec": "^1.0.1",
"tape": "^3.0.3"
},
"dependencies": {
"inherits": "^2.0.1",
"readable-stream": "^1.0.33"
},
"optionalDependencies": {
"chacha-native": "^2.0.0"
}
}