-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
{
"name": "mmd-gitlab-backuper",
"description": "a package to backup from all projects that you have on gitlab",
"version": "2.0.7",
"main": "lib/index.js",
"license": "MIT",
"author": {
"name": "Mohammad Toosi",
"email": "mammadtoosi@gmail.com",
"url": "http://mammad2c.github.io/"
},
"bin": {
"mmd-gitlab-backuper": "lib/index.js"
},
"scripts": {
"start": "node lib/index.js -t",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.1",
"cli-progress": "^3.9.0",
"fs-extra": "^10.0.0",
"shelljs": "^0.8.4",
"yargs": "^17.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mammad2c/mmd-gitlab-backuper"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.0",
"lint-staged": "^11.0.0"
},
"lint-staged": {
"*.{js}": "eslint --fix"
}
}