-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.52 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
{
"name": "gitmojo",
"version": "0.2.12",
"license": "MIT",
"author": "Matthieu Lassalvy <sixertoy.github@gmail.com>",
"description": "Commit messages enhanced with emojis",
"keywords": [
"git",
"commit",
"message",
"emoji",
"husky",
"hook",
"prepare-commit-msg",
"prepare-commit-message",
"documentation",
"collaborate",
"team",
"mojo",
"gitmojo"
],
"homepage": "https://github.com/sixertoy/gitmojo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sixertoy/gitmojo.git"
},
"bugs": {
"url": "https://github.com/sixertoy/gitmojo/issues"
},
"engines": {
"npm": ">=5.6.0",
"node": ">=8.10.0",
"yarn": ">=1.15.2"
},
"preferGlobal": true,
"main": "cli.js",
"bin": {
"gitmojo": "./bin/gitmojo"
},
"files": [
"bin/",
"src/",
".gitmojorc.json",
"cli.js"
],
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"prettier-eslint": "9.0.1",
"pretty-quick": "2.0.1"
},
"dependencies": {
"args": "5.0.1",
"dotenv": "8.2.0",
"emojilib": "2.4.0",
"fs-extra": "8.1.0",
"tablemark": "2.0.0"
},
"scripts": {
"cleanup": "rm -rf node_modules && rm yarn.lock",
"lint": "./node_modules/.bin/eslint ./src/**/*.js"
}
}