-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (54 loc) · 1.04 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
{
"name": "crypto-hash",
"version": "3.1.0",
"description": "Tiny hashing module that uses the native crypto API in Node.js and the browser",
"license": "MIT",
"repository": "sindresorhus/crypto-hash",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"node": "./index.js",
"default": "./browser.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"//test": "xo && ava test.js && karmatic test-browser.js && tsd",
"test": "xo && ava test.js && tsd"
},
"files": [
"index.js",
"index.d.ts",
"browser.js",
"thread.js",
"utilities.js"
],
"keywords": [
"crypto",
"hash",
"isomorphic",
"hashing",
"hasher",
"cryptography",
"sha1",
"sha256",
"sha384",
"sha512",
"browser"
],
"devDependencies": {
"@sindresorhus/is": "^7.0.0",
"ava": "^6.1.3",
"hash.js": "^1.1.7",
"tsd": "^0.31.1",
"xo": "^0.59.2"
}
}