@checkdigit/eslint-plugin 6.8.0-PR.83-33f3 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.cjs +93 -2
- package/dist-cjs/metafile.json +3 -3
- package/package.json +92 -1
package/dist-cjs/metafile.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"inputs": {
|
|
3
3
|
"package.json": {
|
|
4
|
-
"bytes":
|
|
4
|
+
"bytes": 3348,
|
|
5
5
|
"imports": [],
|
|
6
6
|
"format": "esm",
|
|
7
7
|
"with": {
|
|
@@ -15178,7 +15178,7 @@
|
|
|
15178
15178
|
"bytesInOutput": 2304
|
|
15179
15179
|
},
|
|
15180
15180
|
"package.json": {
|
|
15181
|
-
"bytesInOutput":
|
|
15181
|
+
"bytesInOutput": 3297
|
|
15182
15182
|
},
|
|
15183
15183
|
"src/get-documentation-url.ts": {
|
|
15184
15184
|
"bytesInOutput": 146
|
|
@@ -15229,7 +15229,7 @@
|
|
|
15229
15229
|
"bytesInOutput": 3362
|
|
15230
15230
|
}
|
|
15231
15231
|
},
|
|
15232
|
-
"bytes":
|
|
15232
|
+
"bytes": 4233292
|
|
15233
15233
|
}
|
|
15234
15234
|
}
|
|
15235
15235
|
}
|
package/package.json
CHANGED
|
@@ -1 +1,92 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@checkdigit/eslint-plugin",
|
|
3
|
+
"version": "6.8.0",
|
|
4
|
+
"description": "Check Digit eslint plugins",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"eslint",
|
|
7
|
+
"eslintplugin"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/checkdigit/eslint-plugin#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/checkdigit/eslint-plugin/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/checkdigit/eslint-plugin"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "Check Digit, LLC",
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"type": "module",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist-types/index.d.ts",
|
|
24
|
+
"require": "./dist-cjs/index.cjs",
|
|
25
|
+
"import": "./dist-mjs/index.mjs",
|
|
26
|
+
"default": "./dist-mjs/index.mjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"src",
|
|
31
|
+
"dist-types",
|
|
32
|
+
"dist-cjs",
|
|
33
|
+
"dist-mjs",
|
|
34
|
+
"!src/**/*.test.ts",
|
|
35
|
+
"!src/**/*.spec.ts",
|
|
36
|
+
"!dist-types/**/*.test.d.ts",
|
|
37
|
+
"!dist-types/**/*.spec.d.ts",
|
|
38
|
+
"!dist-cjs/**/*.test.cjs",
|
|
39
|
+
"!dist-cjs/**/*.spec.cjs",
|
|
40
|
+
"!dist-mjs/**/*.test.mjs",
|
|
41
|
+
"!dist-mjs/**/*.spec.mjs",
|
|
42
|
+
"SECURITY.md"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build:dist-cjs": "rimraf dist-cjs && npx builder --type=commonjs --sourceMap --entryPoint=index.ts --outDir=dist-cjs --outFile=index.cjs --external=espree && echo \"module.exports = module.exports.default;\" >> dist-cjs/index.cjs && node dist-cjs/index.cjs",
|
|
46
|
+
"build:dist-mjs": "rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
|
|
47
|
+
"build:dist-types": "rimraf dist-types && npx builder --type=types --outDir=dist-types",
|
|
48
|
+
"ci:compile": "tsc --noEmit",
|
|
49
|
+
"ci:coverage": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true",
|
|
50
|
+
"ci:lint": "npm run lint",
|
|
51
|
+
"ci:style": "npm run prettier",
|
|
52
|
+
"ci:test": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false",
|
|
53
|
+
"lint": "eslint --max-warnings 0 --ignore-path .gitignore .",
|
|
54
|
+
"lint:fix": "eslint --ignore-path .gitignore . --fix",
|
|
55
|
+
"prepublishOnly": "npm run build:dist-types && npm run build:dist-cjs && npm run build:dist-mjs",
|
|
56
|
+
"prettier": "prettier --ignore-path .gitignore --list-different .",
|
|
57
|
+
"prettier:fix": "prettier --ignore-path .gitignore --write .",
|
|
58
|
+
"test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style"
|
|
59
|
+
},
|
|
60
|
+
"prettier": "@checkdigit/prettier-config",
|
|
61
|
+
"jest": {
|
|
62
|
+
"preset": "@checkdigit/jest-config"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@typescript-eslint/type-utils": "7.18.0",
|
|
66
|
+
"@typescript-eslint/utils": "7.18.0",
|
|
67
|
+
"ts-api-utils": "^1.3.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@checkdigit/jest-config": "^6.0.2",
|
|
71
|
+
"@checkdigit/prettier-config": "^5.5.1",
|
|
72
|
+
"@checkdigit/typescript-config": "6.0.0",
|
|
73
|
+
"@types/eslint": "8.56.10",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
75
|
+
"@typescript-eslint/parser": "7.18.0",
|
|
76
|
+
"@typescript-eslint/rule-tester": "7.18.0",
|
|
77
|
+
"eslint-config-prettier": "^9.1.0",
|
|
78
|
+
"eslint-plugin-eslint-plugin": "^6.2.0",
|
|
79
|
+
"eslint-plugin-import": "^2.31.0",
|
|
80
|
+
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
81
|
+
"eslint-plugin-no-secrets": "^1.0.2",
|
|
82
|
+
"eslint-plugin-node": "^11.1.0",
|
|
83
|
+
"eslint-plugin-sonarjs": "0.24.0",
|
|
84
|
+
"http-status-codes": "^2.3.0"
|
|
85
|
+
},
|
|
86
|
+
"peerDependencies": {
|
|
87
|
+
"eslint": ">=8 <9"
|
|
88
|
+
},
|
|
89
|
+
"engines": {
|
|
90
|
+
"node": ">=20.14"
|
|
91
|
+
}
|
|
92
|
+
}
|