Files
klz-cables.com/.pnpm-store/v10/files/18/f96471100d470b06558b801c7d1a86fce2a72a0b654c3d49315c65099194404cd194263fdeb2b7867d058d47104620a716a3513f2e35f722fe4127206eeb4d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

52 lines
1.8 KiB
Plaintext

{
"name": "webpack-sources",
"version": "3.3.4",
"description": "Source code handling classes for webpack",
"keywords": ["webpack", "source-map"],
"homepage": "https://github.com/webpack/webpack-sources#readme",
"bugs": {
"url": "https://github.com/webpack/webpack-sources/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack/webpack-sources.git"
},
"license": "MIT",
"author": "Tobias Koppers @sokra",
"main": "lib/index.js",
"types": "types.d.ts",
"files": ["lib/", "types.d.ts"],
"scripts": {
"lint": "npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special",
"lint:code": "eslint --cache .",
"lint:special": "node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types",
"lint:types": "tsc",
"lint:types-test": "tsc -p tsconfig.types.test.json",
"fmt": "npm run fmt:base -- --loglevel warn --write",
"fmt:check": "npm run fmt:base -- --check",
"fmt:base": "prettier --cache --ignore-unknown .",
"fix": "npm run fix:code && npm run fix:special",
"fix:code": "npm run lint:code -- --fix",
"fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write",
"pretest": "npm run lint",
"test": "jest",
"cover": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"eslint": "^9.28.0",
"eslint-config-webpack": "^4.0.8",
"jest": "^27.5.1",
"prettier": "^3.5.3",
"prettier-2": "npm:prettier@^2",
"source-map": "^0.7.3",
"sourcemap-validator": "^2.1.0",
"tooling": "webpack/tooling#v1.24.4",
"typescript": "^5.3.3",
"webpack": "^5.99.9"
},
"engines": {
"node": ">=10.13.0"
}
}