UNPKG

@codecov/webpack-plugin

Version:

Official Codecov Webpack plugin

75 lines 2.13 kB
{ "name": "@codecov/webpack-plugin", "version": "1.9.1", "description": "Official Codecov Webpack plugin", "author": "Codecov", "license": "MIT", "keywords": [ "Codecov", "Webpack", "bundler", "plugin" ], "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "dependencies": { "unplugin": "^1.10.1", "@codecov/bundler-plugin-core": "^1.9.1" }, "devDependencies": { "@rollup/plugin-replace": "^5.0.5", "@types/node": "^20.10.0", "@types/webpack": "^5.28.5", "@vitest/coverage-v8": "^2.1.9", "chalk": "4.1.2", "codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0", "msw": "^2.7.0", "ts-node": "^10.9.2", "typedoc": "^0.27.5", "typescript": "^5.3.3", "unbuild": "^2.0.0", "vitest": "^2.1.9", "webpack": "^5.96.1" }, "peerDependencies": { "webpack": "5.x" }, "volta": { "extends": "../../package.json" }, "engines": { "node": ">=18.0.0" }, "scripts": { "type-check": "tsc --noEmit", "build": "unbuild", "dev": "unbuild --stub && node --watch-path=src dist/index.mjs", "clean": "rm -rf dist node_modules", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "pnpm lint --fix", "format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --write", "format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path ../.gitignore --ignore-unknown --no-error-on-unmatched-pattern --check", "test:unit": "vitest run", "test:unit:watch": "vitest watch", "test:unit:ci": "vitest --coverage --reporter=junit --outputFile=./bundler-plugin-core.junit.xml run", "test:unit:update": "vitest -u run", "generate:typedoc": "typedoc --options ./typedoc.json" } }