| 1 | {
|
|---|
| 2 | "name": "loader-runner",
|
|---|
| 3 | "version": "4.3.2",
|
|---|
| 4 | "description": "Runs (webpack) loaders",
|
|---|
| 5 | "keywords": ["webpack", "loader"],
|
|---|
| 6 | "homepage": "https://github.com/webpack/loader-runner#readme",
|
|---|
| 7 | "bugs": {
|
|---|
| 8 | "url": "https://github.com/webpack/loader-runner/issues"
|
|---|
| 9 | },
|
|---|
| 10 | "repository": {
|
|---|
| 11 | "type": "git",
|
|---|
| 12 | "url": "git+https://github.com/webpack/loader-runner.git"
|
|---|
| 13 | },
|
|---|
| 14 | "funding": {
|
|---|
| 15 | "type": "opencollective",
|
|---|
| 16 | "url": "https://opencollective.com/webpack"
|
|---|
| 17 | },
|
|---|
| 18 | "license": "MIT",
|
|---|
| 19 | "author": "Tobias Koppers @sokra",
|
|---|
| 20 | "main": "lib/LoaderRunner.js",
|
|---|
| 21 | "files": ["lib/", "bin/", "hot/", "web_modules/", "schemas/"],
|
|---|
| 22 | "scripts": {
|
|---|
| 23 | "lint": "npm run lint:code && npm run fmt:check",
|
|---|
| 24 | "lint:code": "eslint --cache .",
|
|---|
| 25 | "fmt": "npm run fmt:base -- --log-level warn --write",
|
|---|
| 26 | "fmt:check": "npm run fmt:base -- --check",
|
|---|
| 27 | "fmt:base": "prettier --cache --ignore-unknown .",
|
|---|
| 28 | "fix": "npm run fix:code && npm run fmt",
|
|---|
| 29 | "fix:code": "npm run lint:code -- --fix",
|
|---|
| 30 | "pretest": "npm run lint",
|
|---|
| 31 | "test": "npm run test:basic",
|
|---|
| 32 | "test:basic": "mocha --reporter spec",
|
|---|
| 33 | "test:cover": "nyc --reporter=lcov npm run test:basic"
|
|---|
| 34 | },
|
|---|
| 35 | "devDependencies": {
|
|---|
| 36 | "@eslint/js": "^9.28.0",
|
|---|
| 37 | "@eslint/markdown": "^8.0.1",
|
|---|
| 38 | "@stylistic/eslint-plugin": "^5.2.3",
|
|---|
| 39 | "globals": "^17.0.0",
|
|---|
| 40 | "eslint": "^9.28.0",
|
|---|
| 41 | "eslint-config-webpack": "^4.6.1",
|
|---|
| 42 | "eslint-config-prettier": "^10.1.5",
|
|---|
| 43 | "eslint-plugin-import": "^2.31.0",
|
|---|
| 44 | "eslint-plugin-jest": "^29.15.2",
|
|---|
| 45 | "eslint-plugin-jsdoc": "^62.9.0",
|
|---|
| 46 | "eslint-plugin-n": "^17.19.0",
|
|---|
| 47 | "eslint-plugin-prettier": "^5.4.1",
|
|---|
| 48 | "eslint-plugin-unicorn": "^64.0.0",
|
|---|
| 49 | "prettier": "^3.5.3",
|
|---|
| 50 | "nyc": "^14.1.1",
|
|---|
| 51 | "mocha": "^3.2.0",
|
|---|
| 52 | "should": "^8.0.2"
|
|---|
| 53 | },
|
|---|
| 54 | "engines": {
|
|---|
| 55 | "node": ">=6.11.5"
|
|---|
| 56 | }
|
|---|
| 57 | }
|
|---|