@cdklabs/eslint-plugin 0.0.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 ADDED
@@ -0,0 +1,120 @@
1
+ {
2
+ "name": "@cdklabs/eslint-plugin",
3
+ "description": "eslint rules published by the CDK team. Contains CDK rules and others.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/cdklabs/eslint-rules"
7
+ },
8
+ "scripts": {
9
+ "build": "npx projen build",
10
+ "bump": "npx projen bump",
11
+ "clobber": "npx projen clobber",
12
+ "compile": "npx projen compile",
13
+ "default": "npx projen default",
14
+ "eject": "npx projen eject",
15
+ "eslint": "npx projen eslint",
16
+ "package": "npx projen package",
17
+ "post-compile": "npx projen post-compile",
18
+ "post-upgrade": "npx projen post-upgrade",
19
+ "pre-compile": "npx projen pre-compile",
20
+ "release": "npx projen release",
21
+ "test": "npx projen test",
22
+ "test:watch": "npx projen test:watch",
23
+ "unbump": "npx projen unbump",
24
+ "upgrade": "npx projen upgrade",
25
+ "upgrade-cdklabs-projen-project-types": "npx projen upgrade-cdklabs-projen-project-types",
26
+ "upgrade-dev-deps": "npx projen upgrade-dev-deps",
27
+ "watch": "npx projen watch",
28
+ "projen": "npx projen"
29
+ },
30
+ "author": {
31
+ "name": "Amazon Web Services",
32
+ "email": "aws-cdk-dev@amazon.com",
33
+ "url": "https://aws.amazon.com",
34
+ "organization": true
35
+ },
36
+ "devDependencies": {
37
+ "@types/eslint": "^8",
38
+ "@types/estree": "^1.0.6",
39
+ "@types/fs-extra": "^11.0.4",
40
+ "@types/jest": "^29.5.13",
41
+ "@types/node": "^18",
42
+ "@typescript-eslint/eslint-plugin": "^7",
43
+ "@typescript-eslint/parser": "^7",
44
+ "cdklabs-projen-project-types": "^0.1.205",
45
+ "commit-and-tag-version": "^12",
46
+ "constructs": "^10.0.0",
47
+ "eslint": "^8",
48
+ "eslint-import-resolver-typescript": "^3.6.3",
49
+ "eslint-plugin-import": "^2.31.0",
50
+ "jest": "^29.7.0",
51
+ "jest-junit": "^15",
52
+ "projen": "^0.88.0",
53
+ "ts-jest": "^29.2.5",
54
+ "ts-node": "^10.9.2",
55
+ "typescript": "^5.6.2"
56
+ },
57
+ "peerDependencies": {
58
+ "@typescript-eslint/parser": "^7.18.0",
59
+ "eslint": ">=6 <9"
60
+ },
61
+ "dependencies": {
62
+ "fs-extra": "^11.2.0"
63
+ },
64
+ "engines": {
65
+ "node": ">= 18.12.0"
66
+ },
67
+ "main": "lib/index.js",
68
+ "license": "Apache-2.0",
69
+ "publishConfig": {
70
+ "access": "public"
71
+ },
72
+ "version": "0.0.0",
73
+ "jest": {
74
+ "coverageProvider": "v8",
75
+ "testMatch": [
76
+ "<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
77
+ "<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
78
+ "<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)",
79
+ "<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)"
80
+ ],
81
+ "clearMocks": true,
82
+ "collectCoverage": true,
83
+ "coverageReporters": [
84
+ "json",
85
+ "lcov",
86
+ "clover",
87
+ "cobertura",
88
+ "text"
89
+ ],
90
+ "coverageDirectory": "coverage",
91
+ "coveragePathIgnorePatterns": [
92
+ "/node_modules/"
93
+ ],
94
+ "testPathIgnorePatterns": [
95
+ "/node_modules/"
96
+ ],
97
+ "watchPathIgnorePatterns": [
98
+ "/node_modules/"
99
+ ],
100
+ "reporters": [
101
+ "default",
102
+ [
103
+ "jest-junit",
104
+ {
105
+ "outputDirectory": "test-reports"
106
+ }
107
+ ]
108
+ ],
109
+ "transform": {
110
+ "^.+\\.[t]sx?$": [
111
+ "ts-jest",
112
+ {
113
+ "tsconfig": "tsconfig.dev.json"
114
+ }
115
+ ]
116
+ }
117
+ },
118
+ "types": "lib/index.d.ts",
119
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
120
+ }