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
| {
| "name": "loader-runner",
| "version": "4.3.1",
| "description": "Runs (webpack) loaders",
| "keywords": ["webpack", "loader"],
| "homepage": "https://github.com/webpack/loader-runner#readme",
| "bugs": {
| "url": "https://github.com/webpack/loader-runner/issues"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/webpack/loader-runner.git"
| },
| "funding": {
| "type": "opencollective",
| "url": "https://opencollective.com/webpack"
| },
| "license": "MIT",
| "author": "Tobias Koppers @sokra",
| "main": "lib/LoaderRunner.js",
| "files": ["lib/", "bin/", "hot/", "web_modules/", "schemas/"],
| "scripts": {
| "lint": "npm run lint:code && npm run fmt:check",
| "lint:code": "eslint --cache .",
| "fmt": "npm run fmt:base -- --log-level warn --write",
| "fmt:check": "npm run fmt:base -- --check",
| "fmt:base": "prettier --cache --ignore-unknown .",
| "fix": "npm run fix:code && npm run fmt",
| "fix:code": "npm run lint:code -- --fix",
| "pretest": "npm run lint",
| "test": "npm run test:basic",
| "test:basic": "mocha --reporter spec",
| "test:cover": "nyc --reporter=lcov npm run test:basic"
| },
| "devDependencies": {
| "@eslint/js": "^9.28.0",
| "@eslint/markdown": "^7.1.0",
| "@stylistic/eslint-plugin": "^5.2.3",
| "globals": "^16.2.0",
| "eslint": "^9.28.0",
| "eslint-config-webpack": "^4.6.1",
| "eslint-config-prettier": "^10.1.5",
| "eslint-plugin-import": "^2.31.0",
| "eslint-plugin-jest": "^28.12.0",
| "eslint-plugin-jsdoc": "^54.1.1",
| "eslint-plugin-n": "^17.19.0",
| "eslint-plugin-prettier": "^5.4.1",
| "eslint-plugin-unicorn": "^60.0.0",
| "prettier": "^3.5.3",
| "nyc": "^14.1.1",
| "mocha": "^3.2.0",
| "should": "^8.0.2"
| },
| "engines": {
| "node": ">=6.11.5"
| }
| }
|
|