UNPKG

yarn-audit-fix

Version:
115 lines (114 loc) 3.66 kB
{ "name": "yarn-audit-fix", "version": "10.1.1", "private": false, "publishConfig": { "access": "public" }, "type": "module", "description": "The missing `yarn audit fix`", "bin": { "yarn-audit-fix": "target/esm/cli.mjs" }, "main": "./target/esm/index.mjs", "exports": { ".": { "types": "./target/dts/index.d.ts", "import": "./target/esm/index.mjs", "default": "./target/esm/index.mjs" }, "./cli": { "types": "./target/dts/cli.d.ts", "import": "./target/esm/cli.mjs", "default": "./target/esm/cli.mjs" }, "./package.json": "./package.json" }, "module": "target/esm/index.mjs", "types": "target/dts/index.d.ts", "engines": { "node": ">= 16.0.0" }, "scripts": { "clean": "rimraf target buildcache docs coverage", "lint:fix": "eslint -c src/test/lint/.eslintrc.json src --fix", "format": "prettier --write \"src/**/*.ts\"", "test": "concurrently 'npm:test:*'", "test:unit": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --config=jest.config.json --runInBand", "test:integration": "node ./target/esm/cli.mjs --package-lock-only --audit-level=moderate --ignore-engines", "test:depcheck": "npx depcheck --ignore-patterns='src/test/fixtures' --ignores='node:*,@types/*,esbuild*,eslint-config-*,minimist,mkdirp,ts-node,typedoc,@jest/globals'", "test:lint": "eslint -c src/test/lint/.eslintrc.json src", "build": "concurrently 'npm:build:*'", "build:buildstamp": "npx buildstamp", "build:ts": "cpy --cwd=src/main/ts . ../../../../../../target/ts/", "build:esm": "node ./src/scripts/build.cjs --entry=\"./src/main/ts/index.ts:./src/main/ts/cli.ts\"", "build:dts": "tsc --emitDeclarationOnly --skipLibCheck --outDir target/dts", "build:docs": "typedoc --options src/main/typedoc", "postupdate": "yarn && yarn build && yarn test", "publish:beta": "npm publish --no-git-tag-version --tag beta", "publish:rc": "npm publish --no-git-tag-version --tag rc", "rm-npm-bin": "rimraf node_modules/.bin/npm node_modules/.bin/npx", "release": "yarn rm-npm-bin && npx -p @qiwi/semrel-toolkit semrel -e @qiwi/semrel-config" }, "keywords": [ "yarn-audit-fix", "yarn audit fix", "audit", "vulnerability", "security" ], "files": [ "README.md", "CHANGELOG.md", "target/esm", "target/ts", "target/dts", "buildstamp.json" ], "author": "Anton Golub <golub.anton@gmail.com>", "license": "MIT", "workspaces0": [ "packages/*" ], "dependencies": { "@types/fs-extra": "^11.0.4", "@types/lodash-es": "^4.17.12", "@types/semver": "^7.5.8", "@types/yarnpkg__lockfile": "^1.1.9", "@yarnpkg/lockfile": "^1.1.0", "chalk": "^5.3.0", "commander": "^12.1.0", "fast-glob": "^3.3.2", "fs-extra": "^11.2.0", "js-yaml": "^4.1.0", "lodash-es": "^4.17.21", "semver": "^7.6.3", "synp": "^1.9.14" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.14", "@types/js-yaml": "^4.0.9", "@types/node": "^22.10.1", "concurrently": "^9.1.0", "cpy-cli": "^5.0.0", "esbuild": "^0.24.0", "esbuild-node-externals": "^1.15.0", "eslint": "^8.46.0", "eslint-config-prettier": "^9.1.0", "eslint-config-qiwi": "^2.1.3", "jest": "^29.7.0", "minimist": "^1.2.8", "mkdirp": "^3.0.1", "npm": "^10.0.0", "prettier": "^3.4.1", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typedoc": "^0.27.1", "typescript": "5.7.2" }, "repository": { "type": "git", "url": "git+https://github.com/antongolub/yarn-audit-fix.git" } }