-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 7.04 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "eslint-config-ash-nazg",
"version": "36.22.2",
"description": "An expansion and tweaking of the \"standard\" config style for ESLint",
"main": "index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"prepublishOnly": "pnpm i",
"test-3rd": "es-file-traverse --file ./main.js --node --cjs --ignoreResolutionErrors",
"lint-3rd": "eslint --no-inline-config --config third-party.js `es-file-traverse --file ./main.js --node --cjs --ignoreResolutionErrors --parserOptions=\"{\\\"requireConfigFile\\\":false,\\\"babelOptions\\\":{\\\"plugins\\\":[\\\"@babel/plugin-syntax-import-attributes\\\"]}}\"`",
"3rd": "es-file-traverse --file ./main.js --node --cjs --ignoreResolutionErrors --parserOptions=\"{\\\"requireConfigFile\\\":false,\\\"babelOptions\\\":{\\\"plugins\\\":[\\\"@babel/plugin-syntax-import-attributes\\\"]}}\"",
"unused:array-func": "node inherited-rules/build.mjs unused eslint-plugin-array-func all",
"unused:compat": "node inherited-rules/build.mjs unused eslint-plugin-compat recommended",
"unused:eslint-comments": "node inherited-rules/build.mjs unused eslint-plugin-eslint-comments recommended",
"unused:html": "node inherited-rules/build.mjs unused eslint-plugin-html",
"unused:import": "node inherited-rules/build.mjs unused eslint-plugin-import recommended",
"unused:jsdoc": "node inherited-rules/build.mjs unused eslint-plugin-jsdoc recommended",
"unused:markdown": "node inherited-rules/build.mjs unused eslint-plugin-markdown",
"unused:no-use-extend-native": "node inherited-rules/build.mjs unused eslint-plugin-no-use-extend-native recommended",
"unused:node": "node inherited-rules/build.mjs unused eslint-plugin-n recommended-module",
"unused:promise": "node inherited-rules/build.mjs unused eslint-plugin-promise recommended",
"unused:sonarjs": "node inherited-rules/build.mjs unused eslint-plugin-sonarjs recommended",
"unused:unicorn": "node inherited-rules/build.mjs unused eslint-plugin-unicorn recommended",
"unused:no-unsanitized": "node inherited-rules/build.mjs unused eslint-plugin-no-unsanitized DOM",
"unused:eslint": "node inherited-rules/build.mjs unused @eslint/js/src/configs/eslint-all",
"unused": "rimraf inherited-rules/unused/*.js & npm run unused:array-func && npm run unused:compat && npm run unused:eslint-comments && npm run unused:html && npm run unused:import && npm run unused:markdown && npm run unused:no-use-extend-native && npm run unused:node && npm run unused:promise && npm run unused:sonarjs && npm run unused:unicorn && npm run unused:no-unsanitized && npm run unused:eslint && npm run unused:jsdoc",
"inherited:array-func": "node inherited-rules/build.mjs inherited eslint-plugin-array-func all",
"inherited:compat": "node inherited-rules/build.mjs inherited eslint-plugin-compat recommended",
"inherited:eslint-comments": "node inherited-rules/build.mjs inherited eslint-plugin-eslint-comments recommended",
"inherited:html": "node inherited-rules/build.mjs inherited eslint-plugin-html",
"inherited:import": "node inherited-rules/build.mjs inherited eslint-plugin-import recommended",
"inherited:jsdoc": "node inherited-rules/build.mjs inherited eslint-plugin-jsdoc recommended",
"inherited:markdown": "node inherited-rules/build.mjs inherited eslint-plugin-markdown",
"inherited:no-use-extend-native": "node inherited-rules/build.mjs inherited eslint-plugin-no-use-extend-native recommended",
"inherited:node": "node inherited-rules/build.mjs inherited eslint-plugin-n recommended-module",
"inherited:promise": "node inherited-rules/build.mjs inherited eslint-plugin-promise recommended",
"inherited:sonarjs": "node inherited-rules/build.mjs inherited eslint-plugin-sonarjs recommended",
"inherited:standard": "node inherited-rules/build.mjs inherited eslint-config-standard",
"inherited:unicorn": "node inherited-rules/build.mjs inherited eslint-plugin-unicorn recommended",
"inherited:eslint-recommended": "node inherited-rules/build.mjs inherited @eslint/js/src/configs/eslint-recommended",
"inherited:eslint": "node inherited-rules/build.mjs inherited @eslint/js/src/configs/eslint-all",
"inherited:no-unsanitized": "node inherited-rules/build.mjs inherited eslint-plugin-no-unsanitized DOM",
"inherited": "rimraf inherited-rules/implicitly-included/*.js && npm run inherited:array-func && npm run inherited:compat && npm run inherited:eslint-comments && npm run inherited:html && npm run inherited:import && npm run inherited:markdown && npm run inherited:no-use-extend-native && npm run inherited:node && npm run inherited:promise && npm run inherited:sonarjs && echo \"DISABLED FOR NOW: npm run inherited:standard\" && npm run inherited:unicorn && npm run inherited:eslint-recommended && npm run inherited:eslint && npm run inherited:no-unsanitized && npm run inherited:jsdoc",
"compare": "npm run inherited && npm run unused",
"eslint": "eslint .",
"lint": "npm run eslint",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettz9/eslint-config-ash-nazg.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/brettz9/eslint-config-ash-nazg/issues"
},
"homepage": "https://github.com/brettz9/eslint-config-ash-nazg#readme",
"engines": {
"node": ">=18.20.3"
},
"dependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@brettz9/eslint-plugin": "^3.0.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@eslint/markdown": "^6.2.1",
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.1.0",
"@stylistic/eslint-plugin": "^2.12.1",
"browserslist": "^4.24.3",
"es-file-traverse": "^1.2.0",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-expect-keywords": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-mocha-cleanup": "^1.11.3",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-no-use-extend-native": "^0.7.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"semver": "^7.6.3"
},
"peerDependencies": {
"eslint": "^9.6.0"
},
"devDependencies": {
"@scottnonnenberg/eslint-compare-config": "^1.1.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"eslint": "^9.17.0",
"rimraf": "^5.0.0",
"typescript": "^5.7.2"
}
}