forked from marc136/node-folder-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
{
"name": "folder-hash",
"version": "4.0.4",
"description": "Create a hash checksum over a folder and its content - its children and their content",
"main": "index.js",
"bin": {
"folder-hash": "bin/folder-hash"
},
"scripts": {
"start": "node sample.js",
"test": "mocha --reporter spec test",
"cover": "nyc mocha test",
"format": "prettier --write *.js examples/ test/",
"doc": "./node_modules/.bin/jsdoc index.js -R README.md -d doc"
},
"author": {
"name": "Marc Walter",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"cli.js",
"index.js",
"bin"
],
"repository": {
"type": "git",
"url": "https://github.com/marc136/node-folder-hash.git"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"report-dir": "test_coverage"
},
"dependencies": {
"debug": "^4.3.3",
"minimatch": "~5.1.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"clone": "^2.1.2",
"ignore": "^5.2.0",
"jsdoc": "4.0.2",
"memfs": "^3.4.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prettier": "~2.8.2"
},
"engines": {
"node": ">=10.10.0"
}
}