-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
78
{
"name": "happy-conventional-commit",
"description": "Tools for getting a happy conventional commit setup.",
"version": "0.0.0",
"author": "David Ortner",
"license": "MIT",
"homepage": "https://github.com/capricorn86/happy-conventional-commit/",
"repository": "https://github.com/capricorn86/happy-conventional-commit/",
"publishConfig": {
"access": "public"
},
"keywords": [
"conventional",
"commit",
"commits",
"next",
"current",
"version",
"release",
"notes",
"changelog",
"lint",
"changed",
"staged",
"workspace",
"version",
"validate",
"message",
"prepare",
"pull",
"request",
"git",
"github"
],
"scripts": {
"compile": "tsc",
"watch": "tsc -w --preserveWatchOutput",
"clean": "git clean -Xdfq",
"lint": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.cache .",
"lint:fix": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.cache --fix .",
"test": "vitest run",
"test:watch": "vitest",
"test:debug": "vitest run --inspect-brk --poolOptions.threads.singleThread",
"prepare": "node -e \"process.env.NODE_ENV != 'production' && process.exit(1)\" || husky install"
},
"bin": {
"happy-current-version": "./bin/happy-current-version.cjs",
"happy-lint-changed": "./bin/happy-lint-changed.cjs",
"happy-next-version": "./bin/happy-next-version.cjs",
"happy-prepare-commit-message": "./bin/happy-prepare-commit-message.cjs",
"happy-release-notes": "./bin/happy-release-notes.cjs",
"happy-validate-commit-message": "./bin/happy-validate-commit-message.cjs",
"happy-validate-pr-commit-messages": "./bin/happy-validate-pr-commit-messages.cjs",
"happy-set-workspace-version": "./bin/happy-set-workspace-version.cjs"
},
"dependencies": {
"glob": "^10.3.10"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}