-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.12 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.12 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
55
56
{
"name": "gitmoji-commit-hook",
"version": "3.0.2",
"description": "Start the commit message with an right emoji",
"main": "bin/index.js",
"type": "module",
"scripts": {
"lint": "xo",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tjoskar/emoji-commit-hook.git"
},
"keywords": [
"git",
"git-hook",
"emoji",
"gitmoji"
],
"bin": {
"gitmoji-commit-hook": "./bin/index.js"
},
"author": "tjoskar <hello@tjoskar.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjoskar/emoji-commit-hook/issues"
},
"homepage": "https://github.com/tjoskar/emoji-commit-hook#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "5.0.1",
"file-exists": "5.0.1",
"inquirer": "9.0.2",
"node-fetch": "3.2.10",
"path-exists": "5.0.0"
},
"devDependencies": {
"simple-spy": "4.0.1",
"vitest": "3.2.4",
"xo": "0.52.4"
},
"volta": {
"node": "16.17.0"
},
"wallaby": {
"testFramework": "vitest"
},
"xo": {
"rules": {
"unicorn/no-process-exit": "off"
}
}
}