-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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": "commit-emoji",
"version": "1.0.0",
"description": "A smart Git commit message enhancer that automatically adds appropriate emoji prefixes based on your code changes",
"main": "dist/index.js",
"bin": {
"commit-emoji": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"git",
"commit",
"emoji",
"conventional-commits",
"git-hooks",
"commit-message",
"developer-tools"
],
"author": "AchengBusiness",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AchengBusiness/commit-emoji.git"
},
"bugs": {
"url": "https://github.com/AchengBusiness/commit-emoji/issues"
},
"homepage": "https://github.com/AchengBusiness/commit-emoji#readme",
"dependencies": {
"commander": "^11.1.0",
"simple-git": "^3.22.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3",
"prettier": "^3.2.4",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.11",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=14.0.0"
}
}