-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.08 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
{
"name": "gbck",
"version": "1.1.0",
"description": "Intuitive lightweight tool for easy and seamless backup of your files into Git repository",
"scripts": {
"test": "exit 0",
"lint": "eslint src"
},
"engines": {
"node": ">=7.5.0"
},
"bin": {
"gbck": "cli.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"joi": "^17.3.0",
"listr": "^0.14.3",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"ora": "^5.1.0",
"recursive-readdir": "^2.2.1",
"simple-git": "^2.21.0",
"untildify": "^4.0.0",
"update-notifier": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.12.0",
"eslint-config-callstack-io": "^1.0.1",
"jest": "^26.6.1",
"prettier": "2.1.2"
},
"eslintConfig": {
"extends": "callstack-io",
"rules": {
"no-console": 0,
"no-cond-assign": [
0,
"except-parens"
],
"no-await-in-loop": [
0
]
},
"globals": {
"jest": true
}
}
}