-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.3 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
57
58
59
60
61
62
63
{
"name": "hash-files",
"description": "A simple function for computing the hash of the contents of one or more files",
"contributors": [
"Mac Angell <[email protected]>"
],
"version": "1.1.1",
"dependencies": {
"async": "^1.5.2",
"glob-all": "^3.0.3",
"opter": "^1.1.0",
"read-files": "^0.1.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "1.x.x",
"jshint": "2.x.x",
"travis-cov": "0.x.x",
"blanket": "1.x.x",
"rewire": "2.x.x",
"coveralls": "2.x.x",
"mocha-lcov-reporter": "0.x.x"
},
"keywords": [
"glob",
"hash",
"sha1",
"md5",
"files",
"directory",
"contents",
"recursive",
"version",
"versioning"
],
"engines": {
"node": ">=0.10.0"
},
"bin": {
"hash-files": "./bin/hash-files"
},
"main": "./lib/hash.js",
"repository": {
"type": "git",
"url": "https://github.com/mac-/hash-files"
},
"scripts": {
"test": "make test && make test-cov && make test-lcov | ./node_modules/coveralls/bin/coveralls.js"
},
"config": {
"blanket": {
"pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig",
"onlyCwd": true,
"data-cover-flags": {
"branchTracking": true
}
},
"travis-cov": {
"threshold": 100
}
},
"license": "MIT"
}