-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.6 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
71
72
73
74
75
76
{
"license": "MIT",
"name": "goodz",
"description": "A command-line utility for generating goodness for your react and gatsby apps",
"version": "1.1.0",
"author": "Goods & Services",
"repository": {
"type": "git",
"url": "git+https://github.com/goods-services/goodz.git"
},
"bugs": {
"url": "https://github.com/goods-services/goodz/issues"
},
"homepage": "https://github.com/goods-services/goodz#readme",
"engines": {
"npm": ">=5",
"node": ">=8.10.0"
},
"bin": {
"goodz": "./bin/goodz.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"precommit": "lint",
"lint": "eslint ./src --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"meow": "^5.0.0",
"plop": "^2.3.0",
"prettier": "^1.16.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"plugins": [
"prettier",
"react",
"jsx-a11y"
]
},
"eslintIgnore": [
"src/generators/react.site/templates/*"
],
"keywords": [
"cli-app",
"cli",
"plop",
"generators",
"react",
"redux",
"saga",
"styled components",
"gatsby",
"material-ui"
]
}