-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·50 lines (50 loc) · 1.11 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
{
"name": "christian-git",
"version": "5.2.0",
"description": "A Christian wrapper for Git to sanctify your version control workflow. ✝️",
"keywords": [
"git",
"git alias",
"version control",
"vcs",
"faith",
"religion",
"christian"
],
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint ./**/*.js",
"prettier": "prettier --write \"**/*.{md,js}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexmacarthur/christian-git.git"
},
"author": "Alex MacArthur",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexmacarthur/christian-git/issues"
},
"engines": {
"node": ">=13.2.0"
},
"homepage": "https://github.com/alexmacarthur/christian-git#readme",
"bin": {
"christian-git": "./index.js"
},
"dependencies": {
"chalk": "^5.2.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}