-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "fancy-commit",
"version": "1.0.0-alpha.0",
"description": "Ohhh so fancy. Super simple cli for writing fancy commit messages",
"main": "./dist/index.js",
"bin": {
"fancy-commit": "./dist/index.js"
},
"scripts": {
"build": "babel src -d dist",
"start": "node ./dist/index.js",
"test:lint": "eslint --ext .js,jsx,json ./src"
},
"author": {
"name": "Drew McMillan",
"url": "https://drew.mx"
},
"homepage": "https://github.com/dr3/fancy-commit",
"bugs": {
"url": "https://github.com/dr3/fancy-commit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dr3/fancy-commit.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"github-emoji": "^1.1.0",
"inquirer": "^6.4.1",
"shelljs": "^0.8.3"
},
"keywords": [
"fancy",
"commit",
"git",
"message",
"emoji"
],
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
}
}