UNPKG

1.33 kBJSONView Raw
1{
2 "name": "hash-files",
3 "description": "A simple function for computing the hash of the contents of one or more files",
4 "contributors": [
5 "Mac Angell <mac.ang311@gmail.com>"
6 ],
7 "version": "1.1.1",
8 "dependencies": {
9 "async": "^1.5.2",
10 "glob-all": "^3.0.3",
11 "opter": "^1.1.0",
12 "read-files": "^0.1.0",
13 "underscore": "^1.8.3"
14 },
15 "devDependencies": {
16 "mocha": "1.x.x",
17 "jshint": "2.x.x",
18 "travis-cov": "0.x.x",
19 "blanket": "1.x.x",
20 "rewire": "2.x.x",
21 "coveralls": "2.x.x",
22 "mocha-lcov-reporter": "0.x.x"
23 },
24 "keywords": [
25 "glob",
26 "hash",
27 "sha1",
28 "md5",
29 "files",
30 "directory",
31 "contents",
32 "recursive",
33 "version",
34 "versioning"
35 ],
36 "engines": {
37 "node": ">=0.10.0"
38 },
39 "bin": {
40 "hash-files": "./bin/hash-files"
41 },
42 "main": "./lib/hash.js",
43 "repository": {
44 "type": "git",
45 "url": "https://github.com/mac-/hash-files"
46 },
47 "scripts": {
48 "test": "make test && make test-cov && make test-lcov | ./node_modules/coveralls/bin/coveralls.js"
49 },
50 "config": {
51 "blanket": {
52 "pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig",
53 "onlyCwd": true,
54 "data-cover-flags": {
55 "branchTracking": true
56 }
57 },
58 "travis-cov": {
59 "threshold": 100
60 }
61 },
62 "license": "MIT"
63}