-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 KB
/
package.json
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
{
"name": "yarn-plugin-npm-audit-fix",
"version": "0.0.0",
"homepage": "https://github.com/sargunv/yarn-plugin-npm-audit-fix",
"repository": "sargunv/yarn-plugin-npm-audit-fix",
"license": "Apache-2.0",
"type": "commonjs",
"main": "./sources/index.ts",
"scripts": {
"build": "builder build plugin",
"configure": "yarn dlx @yarnpkg/sdks vscode && ignore-sync .",
"fix": "eslint . --fix && prettier --write .",
"lint": "eslint . && prettier --check . --loglevel warn",
"test": "true"
},
"prettier": "@sargunv/prettier-config",
"eslintConfig": {
"extends": [
"@sargunv/eslint-config",
"@sargunv/eslint-config/mixins/typescript"
],
"ignorePatterns": [
".yarn",
"bundles/"
],
"root": true
},
"dependencies": {
"@yarnpkg/cli": "3.4.1",
"@yarnpkg/core": "3.4.0",
"clipanion": "3.2.0-rc.4",
"semver": "7.1.2",
"typanion": "^3.12.1"
},
"devDependencies": {
"@sargunv/eslint-config": "^0.3.0",
"@sargunv/prettier-config": "^0.2.2",
"@types/node": "^18.13.0",
"@yarnpkg/builder": "^3.2.7",
"eslint": "^8.33.0",
"ignore-sync": "^6.0.2",
"prettier": "^2.8.4",
"typescript": "4.9.5"
},
"packageManager": "[email protected]"
}