forked from arminbro/generate-react-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.6 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "generate-react-cli",
"version": "5.2.3",
"description": "A simple React CLI to generate components instantly and more.",
"repository": "https://github.com/arminbro/generate-react-cli",
"bugs": "https://github.com/arminbro/generate-react-cli/issues",
"author": "Armin Broubakarian",
"license": "MIT",
"main": "bin/generate-react",
"bin": {
"generate-react": "bin/generate-react",
"g-r": "bin/generate-react"
},
"files": [
"bin/",
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"react",
"build-tools",
"generate-react-cli"
],
"engines": {
"node": ">=10.x",
"npm": ">= 6.x"
},
"browserslist": [
"maintained node versions"
],
"scripts": {
"cm": "npx git-cz",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore 'src/**/*.test.js'",
"build:watch": "npm run build -- --watch",
"test": "jest --coverage",
"test:watch": "npm run test -- --watch",
"release": "standard-version"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.1",
"deep-keys": "^0.5.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"replace": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
]
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}