-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
77
{
"name": "mf-bootstrap-cli",
"version": "1.8.0",
"description": "Generator to create projects with Webpack Module Federation Plugin",
"main": "src/index.js",
"private": false,
"bin": {
"mf-bootstrap-cli": "bin/create-project"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "commonjs",
"scripts": {
"lint:fix": "eslint . --fix",
"lint:report": "eslint --ext .ts,.js --no-error-on-unmatched-pattern -f json -o report.json src/",
"lint": "eslint . && eslint templates/",
"precise-commits": "precise-commits",
"release:major": "np major",
"release:minor": "np minor",
"release:patch": "np patch",
"test": "echo \"No test specified\""
},
"keywords": [
"webpack",
"module",
"federation",
"javascript",
"bootstrap",
"cli",
"create-project",
"react"
],
"dependencies": {
"arg": "4.1.3",
"chalk": "4.1.0",
"chalk-pipe": "4.0.0",
"esm": "3.2.25",
"execa": "4.0.3",
"inquirer": "7.3.3",
"listr": "0.14.3",
"ncp": "2.0.0",
"pkg-install": "1.0.0",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.9.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-package-json": "0.1.4",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.2",
"eslint-plugin-react-hooks": "4.1.2",
"generate-changelog": "1.8.0",
"husky": "4.3.0",
"np": "6.5.0",
"precise-commits": "1.0.2",
"prettier": "2.1.2"
},
"author": "Osvaldo Vega A (OvEgA)",
"repository": {
"type": "git",
"url": "[email protected]:osvaldovega/mf-bootstrap-cli.git"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/osvaldovega/mf-bootstrap-cli/issues"
},
"homepage": "https://github.com/osvaldovega/mf-bootstrap-cli/blob/master/README.md"
}