forked from khattakdev/minimalcommit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "minimalcommit",
"version": "1.0.1",
"description": "A minimalist approach toward git commits to keep things simple.",
"main": "./bin/index.js",
"scripts": {
"lint": "eslint ."
},
"bin": {
"mct": "bin/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/khattakdev/minimalcommit.git"
},
"keywords": [
"git",
"commit",
"push",
"pull"
],
"author": "khattakdev",
"license": "ISC",
"bugs": {
"url": "https://github.com/khattakdev/minimalcommit/issues"
},
"homepage": "https://github.com/khattakdev/minimalcommit#readme",
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.1.5"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
}
}