-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "install-webpack-plugin",
"version": "4.0.5",
"description": "Webpack plugin to automatically install & save dependencies.",
"main": "index.js",
"engines": {
"node": ">=12.13.0"
},
"files": [
"src"
],
"scripts": {
"changelog": "npm run changelog:generate && npm run changelog:add",
"changelog:add": "git add CHANGELOG.md",
"changelog:generate": "github_changelog_generator --future-release $npm_package_version",
"coverage": "jest --coverage",
"postversion": "npm run version:amend && git push origin master --tags && npm publish",
"security": "npm audit",
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
"lint:js": "eslint --cache .",
"lint": "npm-run-all lint:js fmt:check",
"fmt": "npm run fmt:check -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all fix:js fmt",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"version": "npm run changelog",
"version:amend": "git commit --amend -m \"Release v${npm_package_version}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack-contrib/install-webpack-plugin.git"
},
"keywords": [
"webpack",
"webpack-plugin",
"npm",
"install"
],
"author": "Eric Clemmons <eric@smarterspam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpack-contrib/install-webpack-plugin/issues"
},
"homepage": "https://github.com/webpack-contrib/install-webpack-plugin#readme",
"dependencies": {
"colorette": "^1.2.2",
"cross-spawn": "^7.0.3",
"json5": "^2.2.0",
"memfs": "^3.2.2",
"resolve": "^1.20.0",
"schema-utils": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.4",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"codecov": "^3.7.1",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"webpack": "^5.36.2"
},
"peerDependencies": {
"webpack": "^5.0.0"
}
}