-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "cz-emoji-conventional",
"version": "1.1.0",
"description": "commitizen adapter for conventional commit messages with emoji",
"repository": {
"type": "git",
"url": "https://github.com/promet99/cz-emoji-conventional.git"
},
"bugs": {
"url": "https://github.com/promet99/cz-emoji-conventional/issues"
},
"main": "build/index.js",
"scripts": {
"commit": "cz",
"lint": "eslint ./ --ignore-pattern 'build/*'",
"build": "tsc",
"test": "echo \"Error: too lazy to write test\" && exit 1"
},
"author": "Promet99 (https://github.com/promet99)",
"license": "ISC",
"keywords": [
"commitizen",
"conventional-commit",
"adapter",
"emoji"
],
"config": {
"commitizen": {
"path": "./build/index.js"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"chalk": "4.1.2",
"commitizen": "^4.3.0",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.1",
"typescript": "^5.1.6"
}
}