forked from calvinmetcalf/chacha20poly1305
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 763 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
{
"name": "chacha-js",
"version": "2.1.1",
"description": "Fork of Calvin Metcalf's ChaCha20 Poly1305 auth cipher as pure Javascript only",
"main": "index.js",
"scripts": {
"test": "tape test/*.js | tspec"
},
"keywords": [
"chacha20",
"chacha",
"poly1305",
"cipher",
"hmac",
"crypto"
],
"repository": {
"type": "git",
"url": "git://github.com/davidwu226/chacha20poly1305.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidwu226/chacha20poly1305/issues"
},
"homepage": "https://github.com/davidwu226/chacha20poly1305",
"devDependencies": {
"tap-spec": "^1.0.1",
"tape": "^3.0.3"
},
"dependencies": {
"inherits": "^2.0.1",
"readable-stream": "^1.0.33"
}
}