-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.1 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": "@bmacnaughton/action-walk",
"access": "public",
"version": "2.4.0",
"description": "walk a directory tree performing actions",
"main": "action-walk.js",
"engines": {
"node": ">=12.12.0"
},
"directories": {
"test": "test"
},
"files": [
"action-walk.js",
"bin/walk.js",
"README.md",
"LICENSE"
],
"scripts": {
"test": "mocha test/*.test.js",
"coverage": "nyc --reporter=text mocha test/*.test.js",
"walk": "node bin/walk.js"
},
"keywords": [
"directory",
"tree",
"action",
"iterate",
"general",
"utility",
"recursive",
"walk",
"flexible"
],
"author": "Bruce A. MacNaughton",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/bmacnaughton/action-walk.git"
},
"bugs": {
"url": "https://github.com/bmacnaughton/action-walk/issues"
},
"bin": {
"action-walk": "bin/walk.js"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^8.54.0",
"inquirer": "^9.2.12",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
}
}