forked from h2non/jshashes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.03 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
{
"name": "jshashes",
"description": "A fast and independent hashing library pure JavaScript implemented (ES3 compliant) for both server and client side (MD5, SHA1, SHA256, SHA512, RIPEMD, HMAC and Base64)",
"version": "1.0.8",
"repository": "h2non/jshashes",
"author": "Tomas Aparicio <[email protected]>",
"contributors": [
{
"name": "C. Scott Ananian",
"email": "[email protected]",
"web": "http://cscott.net"
}
],
"engines": {
"node": "*"
},
"main": "./hashes.js",
"types": "./hashes.d.ts",
"bin": {
"hashes": "./bin/hashes"
},
"licenses": [
{
"type": "New BSD",
"url": "http://github.com/h2non/jshashes/raw/master/LICENSE"
}
],
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "~1.9.0",
"uglify-js": "~3.7.6"
},
"keywords": [
"hash",
"md5",
"sha1",
"sha256",
"hashes",
"sha512",
"RIPEMD",
"base64",
"hmac",
"crc",
"encoding",
"algorithm"
]
}