forked from nodejs/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 938 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
{
"name": "count-entries-in-directory",
"version": "1.0.0",
"description": "This is a CLI built with [yargs](https://www.npmjs.com/package/yargs) that searches the directory (path) passed to it and then spits out how many entries (files and directories) are within _that directory_. It does not recursively search additional directories within it.",
"main": "index.js",
"bin": {
"countEntriesInDirectory": "./bin/cli.js"
},
"scripts": {
"test:unit": "jest --coverage",
"test:onlychanged": "jest --onlyChanged --coverage",
"lint": "standard",
"test": "npm run lint && npm run test:unit"
},
"keywords": [],
"author": "Tierney Cyren <[email protected]>",
"license": "MIT",
"devDependencies": {
"jest": "^25.2.6",
"standard": "^14.3.3"
},
"dependencies": {
"yargs": "^15.3.1"
},
"standard": {
"globals": [
"describe",
"test",
"expect",
"jest"
]
}
}