-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "create-hash",
"version": "1.2.0",
"description": "create hashes for browserify",
"browser": "browser.js",
"main": "index.js",
"scripts": {
"prepack": "npmignore --auto --commentLines=autogenerated",
"lint": "eslint --ext=js,mjs .",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "tape 'test/**/*.js'",
"posttest": "npx npm@'>=10.2' audit --production"
},
"repository": {
"type": "git",
"url": "[email protected]:crypto-browserify/createHash.git"
},
"keywords": [
"crypto"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/crypto-browserify/createHash/issues"
},
"homepage": "https://github.com/crypto-browserify/createHash",
"dependencies": {
"cipher-base": "^1.0.4",
"hash-base": "=3.0.3",
"inherits": "^2.0.4",
"md5.js": "^1.3.5",
"readable-stream": "^2.3.8",
"ripemd160": "^2.0.2",
"safe-buffer": "^5.2.1",
"sha.js": "^2.4.11"
},
"optionalDependencies": {
"@noble/hashes": "^1.3.3"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.1.1",
"eslint": "=8.8.0",
"hash-test-vectors": "^1.3.2",
"npmignore": "^0.3.1",
"tape": "^5.9.0"
},
"publishConfig": {
"ignore": [
".github/workflows"
]
},
"engines": {
"node": ">= 0.8"
}
}