@checkdigit/eslint-plugin 6.3.0-PR.67-4e3c → 6.3.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/package.json +85 -1
package/package.json
CHANGED
|
@@ -1 +1,85 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@checkdigit/eslint-plugin",
|
|
3
|
+
"version": "6.3.0",
|
|
4
|
+
"description": "Check Digit eslint plugins",
|
|
5
|
+
"prettier": "@checkdigit/prettier-config",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist-types/index.d.ts",
|
|
10
|
+
"require": "./dist-cjs/index.cjs",
|
|
11
|
+
"import": "./dist-mjs/index.mjs",
|
|
12
|
+
"default": "./dist-mjs/index.mjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"eslint",
|
|
17
|
+
"eslintplugin"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=20.13"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/checkdigit/eslint-plugin.git"
|
|
25
|
+
},
|
|
26
|
+
"author": "Check Digit, LLC",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/checkdigit/eslint-plugin/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/checkdigit/eslint-plugin#readme",
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"eslint": ">=8 <9"
|
|
34
|
+
},
|
|
35
|
+
"sideEffects": false,
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@checkdigit/jest-config": "^6.0.2",
|
|
38
|
+
"@checkdigit/prettier-config": "^5.4.1",
|
|
39
|
+
"@checkdigit/typescript-config": "^6.0.0",
|
|
40
|
+
"@types/eslint": "^8.56.10",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^7.14.1",
|
|
42
|
+
"@typescript-eslint/parser": "^7.14.1",
|
|
43
|
+
"eslint-config-prettier": "^9.1.0",
|
|
44
|
+
"eslint-plugin-eslint-plugin": "^6.2.0",
|
|
45
|
+
"eslint-plugin-import": "^2.29.1",
|
|
46
|
+
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
47
|
+
"eslint-plugin-no-secrets": "^1.0.2",
|
|
48
|
+
"eslint-plugin-node": "^11.1.0",
|
|
49
|
+
"eslint-plugin-sonarjs": "^0.24.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"prepublishOnly": "npm run build:dist-types && npm run build:dist-cjs && npm run build:dist-mjs",
|
|
53
|
+
"build:dist-types": "rimraf dist-types && npx builder --type=types --outDir=dist-types",
|
|
54
|
+
"build:dist-cjs": "rimraf dist-cjs && npx builder --type=commonjs --sourceMap --entryPoint=index.ts --outDir=dist-cjs --outFile=index.cjs && echo \"module.exports = module.exports.default;\" >> dist-cjs/index.cjs && node dist-cjs/index.cjs",
|
|
55
|
+
"build:dist-mjs": "rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
|
|
56
|
+
"prettier": "prettier --ignore-path .gitignore --list-different .",
|
|
57
|
+
"prettier:fix": "prettier --ignore-path .gitignore --write .",
|
|
58
|
+
"lint": "eslint --max-warnings 0 --ignore-path .gitignore .",
|
|
59
|
+
"lint:fix": "eslint --ignore-path .gitignore . --fix",
|
|
60
|
+
"test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style",
|
|
61
|
+
"ci:compile": "tsc --noEmit",
|
|
62
|
+
"ci:test": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false",
|
|
63
|
+
"ci:coverage": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true",
|
|
64
|
+
"ci:lint": "npm run lint",
|
|
65
|
+
"ci:style": "npm run prettier"
|
|
66
|
+
},
|
|
67
|
+
"jest": {
|
|
68
|
+
"preset": "@checkdigit/jest-config"
|
|
69
|
+
},
|
|
70
|
+
"files": [
|
|
71
|
+
"src",
|
|
72
|
+
"dist-types",
|
|
73
|
+
"dist-cjs",
|
|
74
|
+
"dist-mjs",
|
|
75
|
+
"!src/**/*.test.ts",
|
|
76
|
+
"!src/**/*.spec.ts",
|
|
77
|
+
"!dist-types/**/*.test.d.ts",
|
|
78
|
+
"!dist-types/**/*.spec.d.ts",
|
|
79
|
+
"!dist-cjs/**/*.test.cjs",
|
|
80
|
+
"!dist-cjs/**/*.spec.cjs",
|
|
81
|
+
"!dist-mjs/**/*.test.mjs",
|
|
82
|
+
"!dist-mjs/**/*.spec.mjs",
|
|
83
|
+
"SECURITY.md"
|
|
84
|
+
]
|
|
85
|
+
}
|