-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1015 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1015 Bytes
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.3.0",
"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": "14.0.0",
"csv-parse": "5.6.0",
"inquirer": "12.6.3",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"node-emoji": "2.2.0",
"prompt-sync": "4.2.0"
},
"devDependencies": {
"ava": "5.3.1",
"eslint": "9.28.0",
"eslint-config-prettier": "10.1.5",
"outdent": "0.8.0",
"prettier": "3.5.3",
"sinon": "20.0.0"
}
}