-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
62 lines (62 loc) · 1.21 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
56
57
58
59
60
61
62
{
"name": "renamer",
"description": "Rename files in bulk",
"version": "5.0.2",
"author": "Lloyd Brookes <[email protected]>",
"bin": {
"renamer": "bin/cli.js"
},
"license": "MIT",
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/renamer.git"
},
"files": [
"index.js",
"bin",
"lib"
],
"keywords": [
"rename",
"move",
"mv",
"file",
"files",
"bulk",
"batch"
],
"scripts": {
"test": "75lb-nature test-runner test/*.js test/internals/*.js"
},
"dependencies": {
"array-back": "^6.2.2",
"chalk": "^5.3.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"current-module-paths": "^1.1.2",
"fast-diff": "^1.3.0",
"file-set": "^5.2.2",
"global-directory": "^4.0.1",
"load-module": "^5.0.0",
"printj": "^1.3.1",
"stream-read-all": "^5.0.2",
"typical": "^7.3.0"
},
"devDependencies": {
"mkdirp2": "^1.0.5",
"renamer-case": "^2.0.2"
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
}
}