-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "react-mkcomponent",
"version": "0.0.0-semantic-released",
"description": "react mkcomponent cli helper",
"main": "bin/mkcomponent.js",
"repository": "https://github.com/jepser/mkcomponent.git",
"author": "Jepser Bernardino <jepsersk8@gmail.com>",
"license": "MIT",
"bin": {
"mkcomponent": "bin/mkcomponent"
},
"files": [
"src/",
"bin/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest ./src"
},
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2",
"eslint": "6.1.0",
"esm": "^3.2.25",
"find-up": "^4.1.0",
"inquirer": "^7.0.0",
"ncp": "^2.0.0",
"read-pkg-up": "^6.0.0",
"to-pascal-case": "^1.0.0",
"to-slug-case": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"semantic-release": "^15.13.24"
}
}