-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 899 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
34
35
36
37
38
39
40
41
{
"name": "@pakerzhang/rename-cli",
"version": "1.1.8",
"description": "Rename files tool",
"main": "./src/index.js",
"engines": {
"node": ">=16"
},
"bin": {
"rename-image": "./src/bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --trace-warnings ./src/bin/cli.js",
"build": "pkg . --no-bytecode"
},
"author": "Paker Zhang",
"repository": {
"type": "git",
"url": "[email protected]:pakerchang/Rename-tool.git"
},
"homepage": "https://github.com/pakerchang/Rename-tool",
"bug": "https://github.com/pakerchang/Rename-tool/issues",
"keywords": [
"rename image tool",
"tool",
"node"
],
"files": [
"src"
],
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"inquirer": "8",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"prettier": "^2.8.4"
}
}