-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gitzy",
"description": "interactive conventional commits cli",
"version": "5.1.0",
"author": "jimmy-guzman @jimmy-guzman",
"repository": "jimmy-guzman/gitzy",
"bugs": "https://github.com/jimmy-guzman/gitzy/issues",
"homepage": "https://github.com/jimmy-guzman/gitzy",
"keywords": [
"conventional commits",
"cli",
"git"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": "./dist/index.mjs",
"scripts": {
"build": "pkgroll --minify --target=node18",
"format": "prettier '**/**/*.{md,yml,json,ts}'",
"format:check": "pnpm format -c",
"format:fix": "pnpm format -w",
"lint": "eslint --cache '**/**/*.{js,ts,*.test}'",
"lint:fix": "pnpm lint --fix",
"test": "vitest --coverage",
"test:watch": "vitest",
"ts-check": "tsc -b tsconfig.json",
"ts-check:watch": "pnpm ts-check --watch",
"validate": "run-p lint format:check test ts-check",
"cz": "pnpm build && ./dist/index.js --commitlint",
"prepare": "is-ci || husky install"
},
"prettier": "@comparto/prettier-config",
"lint-staged": {
"*.{md,json,yml,ts}": [
"prettier -w"
],
"*.{js,ts,test}": [
"eslint --fix"
]
},
"dependencies": {
"commander": "^11.0.0",
"enquirer": "^2.3.6",
"lilconfig": "^2.0.4",
"yaml": "^2.2.2"
},
"devDependencies": {
"@comparto/prettier-config": "1.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "20.11.19",
"@vitest/coverage-v8": "1.2.2",
"ansi-colors": "4.1.3",
"commitlint": "18.6.1",
"eslint": "8.56.0",
"eslint-config-jimmy-guzman": "12.2.0",
"husky": "9.0.11",
"is-ci": "3.0.1",
"lint-staged": "15.2.2",
"npm-run-all2": "5.0.0",
"pkgroll": "2.0.1",
"prettier": "3.2.5",
"semantic-release": "23.0.2",
"typescript": "5.3.3",
"vitest": "1.2.2"
},
"files": [
"dist"
],
"engines": {
"node": ">= 18"
},
"packageManager": "[email protected]"
}