-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 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
{
"name": "findx-cli",
"version": "0.2.2",
"description": "CLI to find and execute command for every glob match",
"author": "Jason Lee <[email protected]>",
"type": "module",
"bin": {
"findx": "./cli.js"
},
"scripts": {
"test": "prettier --write . && eslint . && ava",
"prepublishOnly": "npm run test"
},
"dependencies": {
"commander": "^9.2.0",
"execa": "^6.1.0",
"fast-glob": "^3.2.11",
"mustache": "^4.2.0",
"p-map": "^5.3.0",
"tasuku": "^2.0.0"
},
"devDependencies": {
"ava": "^4.2.0",
"chalk": "^5.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"./cli.js"
],
"license": "ISC",
"homepage": "https://npmjs.com/package/findx-cli",
"repository": "github:zerodevx/findx-cli",
"keywords": [
"cli",
"find",
"exec",
"foreach",
"each",
"file",
"execute",
"run",
"command"
]
}