-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "git-consistent",
"version": "1.1.4",
"description": "Give consistency to your project's git logs.",
"keywords": [
"git",
"commit",
"commitizen"
],
"homepage": "https://github.com/isuke/git-consistent",
"repository": "git@github.com:isuke/git-consistent.git",
"author": "isuke <isuke770@gmail.com>",
"license": "MIT",
"private": false,
"preferGlobal": true,
"type": "module",
"bin": {
"git-consistent": "./lib/index.js"
},
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"fix": "eslint --fix lib/**/*.js test/**/*.js",
"test": "ava --verbose"
},
"dependencies": {
"commander": "11.0.0",
"csv-parse": "5.5.0",
"inquirer": "9.2.10",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"node-emoji": "2.1.0",
"prompt-sync": "4.2.0"
},
"devDependencies": {
"ava": "5.3.1",
"eslint": "8.48.0",
"eslint-config-prettier": "8.5.0",
"outdent": "0.8.0",
"prettier": "3.0.3",
"sinon": "15.2.0"
}
}