-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 765 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 765 Bytes
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
{
"name": "switch-backup-rename",
"version": "1.0.0",
"main": "_switch-backup-rename.js",
"repository": "git@github.com:DavidBabel/Switch-Backup-Rename.git",
"author": "David B <babel.david@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node _switch-backup-rename.js",
"dev": "./build/_switch-backup-rename-macos",
"clean": "rm -rf ./build",
"build": "pkg --targets linux,macos,win --out-path build _switch-backup-rename.js",
"compress": "cd ./build/ && ls | xargs -I {} zip {}.zip {}"
},
"devDependencies": {
"pkg": "^4.3.3"
},
"dependencies": {
"fs-extra": "^6.0.1",
"global": "^4.3.2",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.5",
"remove-accents": "^0.4.2",
"xml-js": "^1.6.4"
}
}