-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.36 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.36 KB
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
57
58
59
60
61
62
63
64
{
"name": "digester",
"version": "1.0.10",
"description": "Digest stream or file with any hashing algorithm",
"main": "lib/index.js",
"scripts": {
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags",
"preversion": "npm test",
"lint": "eslint --ext .js ./lib ./hex",
"test": "jest"
},
"pre-commit": {
"colors": true,
"run": [
"lint",
"test"
],
"silent": false
},
"dependencies": {
"hash-through": "^0.1.16",
"readable-stream": "^3.4.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^24.9.0",
"metrohash": "^2.6.0",
"murmurhash-native": "^3.4.1",
"pre-commit": "^1.2.2",
"xxhash": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heroqu/node-digester.git"
},
"bugs": {
"url": "https://github.com/heroqu/node-digester/issues"
},
"homepage": "https://github.com/heroqu/node-digester#readme",
"keywords": [
"digest",
"hash",
"stream",
"file",
"sha",
"sha3",
"sha256",
"sha512",
"md5",
"ripemd",
"metrohash",
"xxhash",
"murmurhash",
"hasher",
"crypto",
"algorithm"
],
"author": "Heroqu",
"license": "MIT"
}