forked from carloscuesta/gitmoji-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "gitmoji-cli",
"version": "1.9.2",
"description": "A gitmoji client for using emojis on commit messages.",
"engines": {
"node": ">=6"
},
"bin": {
"gitmoji": "cli.js"
},
"scripts": {
"lint": "standard \"src/**/*.js\"",
"test": "npm run lint && jest && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloscuesta/gitmoji-cli.git"
},
"keywords": [
"gitmoji",
"emoji",
"carloscuesta",
"commit"
],
"author": "Carlos Cuesta",
"license": "MIT",
"bugs": {
"url": "https://github.com/carloscuesta/gitmoji-cli/issues"
},
"homepage": "https://github.com/carloscuesta/gitmoji-cli#readme",
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"conf": "^2.0.0",
"execa": "^1.0.0",
"inquirer": "^6.0.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"meow": "^5.0.0",
"parent-dirs": "^1.0.0",
"path-exists": "^3.0.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"codecov": "^3.0.0",
"jest": "^23.6.0",
"standard": "^12.0.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}