-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.22 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "yarn-audit-fix",
"version": "11.0.4",
"publishConfig": {
"access": "public"
},
"type": "module",
"description": "The missing `yarn audit fix`",
"bin": "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",
"scripts": {
"clean": "rimraf target buildcache docs coverage",
"lint:fix": "oxlint -c src/test/lint/.oxlintrc.json src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "concurrently 'npm:test:*'",
"test:unit": "vitest run --coverage",
"test:integration": "node ./target/esm/cli.mjs --audit-level=moderate",
"test:depcheck": "depcheck --ignore-patterns='src/test/fixtures' --ignores='node:*,@types/*,esbuild*,mkdirp,ts-node,typedoc,@vitest/coverage-v8,rollup,rimraf,depcheck,@yarnpkg/libzip'",
"test:lint": "oxlint -c src/test/lint/.oxlintrc.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": "npm_config_yes=true npx -p typedoc@0.28.20 -p typescript@6.0.3 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",
"release": "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/semver": "^7.8.0",
"@yarnpkg/libzip": "^3.2.2",
"fast-glob": "^3.3.3",
"lockgraph": "^0.6.7",
"minimist": "^1.2.8",
"semver": "^7.8.5"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "^4.1.11",
"concurrently": "^10.0.5",
"cpy-cli": "^7.0.0",
"depcheck": "^1.4.7",
"esbuild": "^0.28.2",
"esbuild-node-externals": "^2.0.0",
"mkdirp": "^3.0.1",
"oxlint": "^1.80.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"rollup": "^4.63.1",
"ts-node": "^10.9.2",
"typescript": "7.0.2",
"vitest": "^4.1.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lockgraph/yarn-audit-fix.git"
},
"homepage": "https://github.com/lockgraph/yarn-audit-fix#readme",
"bugs": {
"url": "https://github.com/lockgraph/yarn-audit-fix/issues"
},
"packageManager": "yarn@4.18.0"
}