-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.69 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
{
"name": "commitiquette",
"version": "1.2.1",
"description": "Plugin for commitizen to use commitLint config",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepare": "husky install",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext=\".js,.ts\""
},
"keywords": [
"commitizen",
"commitlint",
"commitizen-plugin",
"commitlint-plugin"
],
"author": "Martin McWhorter <[email protected]>",
"repository": "github:martinmcwhorter/commitiquette",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/load": "^13.1.0",
"@commitlint/types": "^13.1.0",
"@types/inquirer": "^9.0.2",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^35.0.0",
"husky": "^8.0.1",
"jest": "^27.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"ts-jest": "^27.0.1",
"typescript": "^4.2.3"
},
"config": {
"commitizen": {
"path": "./dist/index.js"
}
},
"dependencies": {
"chalk": "^4.1.0",
"change-case": "^4.1.2",
"conventional-commit-types": "^3.0.0",
"tslib": "^2.1.0",
"word-wrap": "^1.2.3"
},
"peerDependencies": {
"@commitlint/cli": ">=12.0.1",
"commitizen": ">=4.2.4"
},
"lint-staged": {
"*.{css,json,md}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
}
}