-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
35 lines (35 loc) · 939 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
{
"name": "sha.js",
"description": "Streamable SHA hashes in pure javascript",
"version": "2.4.11",
"homepage": "https://github.com/crypto-browserify/sha.js",
"repository": {
"type": "git",
"url": "git://github.com/crypto-browserify/sha.js.git"
},
"dependencies": {
"inherits": "^2.0.4",
"safe-buffer": "^5.2.1"
},
"devDependencies": {
"@ljharb/eslint-config": "^21.1.1",
"buffer": "^2.8.3",
"eslint": "=8.8.0",
"hash-test-vectors": "^1.3.2",
"tape": "^5.9.0",
"typedarray": "^0.0.7"
},
"bin": "./bin.js",
"scripts": {
"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"
},
"author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
"license": "(MIT AND BSD-3-Clause)",
"engines": {
"node": ">= 0.10"
}
}