-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.89 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.89 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
{
"name": "eslint-webpack-plugin",
"version": "6.0.0",
"description": "A ESLint plugin for webpack",
"keywords": [
"eslint",
"lint",
"linter",
"plugin",
"webpack"
],
"homepage": "https://github.com/webpack/eslint-webpack-plugin",
"bugs": "https://github.com/webpack/eslint-webpack-plugin/issues",
"repository": "webpack/eslint-webpack-plugin",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"author": "Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"start": "npm run build -- -w",
"clean": "del-cli dist types",
"prebuild": "npm run clean",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
"build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"build": "npm-run-all -p \"build:**\"",
"commitlint": "commitlint --from=main",
"security": "npm audit --omit=dev",
"lint:prettier": "prettier -w --list-different .",
"lint:code": "eslint --cache .",
"lint:spelling": "cspell \"**/*.*\"",
"lint:types": "tsc --pretty --noEmit",
"lint": "npm-run-all -l -p \"lint:**\"",
"fix:code": "npm run lint:code -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"fix": "npm-run-all -l fix:code fix:prettier",
"test:only": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest --testTimeout=60000",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"prepare": "npm run build",
"release": "standard-version"
},
"dependencies": {
"@types/eslint": "^9.6.1",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"schema-utils": "^4.3.3"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/fs-extra": "^11.0.4",
"@types/micromatch": "^4.0.10",
"@types/node": "^25.5.0",
"@types/normalize-path": "^3.0.2",
"chokidar": "^5.0.0",
"cross-env": "^10.1.0",
"cspell": "^9.7.0",
"del": "^8.0.1",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-webpack": "^4.9.4",
"fs-extra": "^11.3.4",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"webpack": "^5.105.4"
},
"peerDependencies": {
"eslint": "^9.0.0 || ^10.0.0",
"webpack": "^5.0.0"
},
"engines": {
"node": ">= 20.9.0"
}
}