-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.46 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.46 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
{
"name": "execa-webpack-plugin",
"version": "6.0.2",
"description": "A better `child_process` for `webpack`",
"keywords": [
"exec",
"child",
"process",
"execute",
"fork",
"execfile",
"spawn",
"file",
"shell",
"bin",
"binary",
"binaries",
"npm",
"path",
"local",
"webpack",
"plugin"
],
"author": "itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/execa-webpack-plugin.git"
},
"homepage": "https://github.com/itgalaxy/execa-webpack-plugin",
"bugs": "https://github.com/itgalaxy/execa-webpack-plugin/issues",
"main": "src/ExecaWebpackPlugin",
"dependencies": {
"execa": "^4.0.0",
"p-limit": "^2.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-ava": "^10.2.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-itgalaxy": "^123.0.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-unicorn": "^16.1.1",
"jest": "^25.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"standard-version": "^7.1.0",
"prettier": "^1.19.1",
"remark-cli": "^7.0.1",
"remark-preset-lint-itgalaxy": "^15.0.0",
"tempy": "^0.4.0",
"webpack": "^4.41.6"
},
"peerDependencies": {
"webpack": "^4.37.0 || ^5.0.0"
},
"scripts": {
"lint:prettier": "prettier --list-different '{src,__tests__}/**/*.{js,cjs,mjs,jsx,ts,tsx,md,yml,yaml}' '*.{js,cjs,mjs,jsx,ts,tsx,md,yml,yaml}'",
"lint:js": "eslint --cache . --ignore-path .gitignore",
"lint:md": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p lint:**",
"prettier": "npm run lint:prettier -- --write",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix": "npm-run-all -c -l -p \"fix:**\" -s prettier",
"pretest": "npm run lint",
"test:only": "jest",
"test:coverage": "jest --coverage",
"test": "npm run test:coverage",
"release": "standard-version"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-itgalaxy"
]
},
"engines": {
"node": ">= 10.13.0"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"src"
]
}