forked from roccivic/glob-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 955 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
36
37
38
39
40
41
42
43
44
{
"name": "glob-hash",
"version": "1.0.3",
"description": "npm module to hash the contents of files matched by globs",
"main": "lib/glob-hash.js",
"bin": {
"glob-hash": "bin/glob-hash"
},
"scripts": {
"test": "node ./node_modules/tap/bin/run.js test/*.js"
},
"keywords": [
"crypto",
"directory",
"files",
"folder",
"glob",
"hash",
"md5",
"path",
"paths",
"sha1",
"sha256"
],
"author": "Rouslan Placella <rouslan@placella.com> (https://github.com/roccivic)",
"bugs": {
"url": "https://github.com/roccivic/glob-hash/issues"
},
"homepage": "https://github.com/roccivic/glob-hash#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roccivic/glob-hash.git"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"commander": "^2.9.0",
"glob": "^7.0.5",
"q": "^1.4.1"
},
"devDependencies": {
"tap": "^5.8.0"
}
}