We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e9e0ee commit 1759858Copy full SHA for 1759858
.gitignore
@@ -0,0 +1 @@
1
+.nyc_output/
package.json
@@ -7,7 +7,8 @@
7
"test": "test"
8
},
9
"scripts": {
10
- "test": "mocha test/*.test.js"
+ "test": "mocha test/*.test.js",
11
+ "coverage": "nyc --reporter=text mocha test/*.test.js"
12
13
"keywords": [
14
"directory",
@@ -22,13 +23,13 @@
22
23
],
24
"author": "Bruce A. MacNaughton",
25
"license": "ISC",
- "dependencies": {
26
- },
+ "dependencies": {},
27
"bin": {
28
"action-walk": "bin/walk"
29
30
"devDependencies": {
31
"mocha": "^8.1.3",
32
- "chai": "^4.2.0"
+ "chai": "^4.2.0",
33
+ "nyc": "^15.1.0"
34
}
35
0 commit comments