@checkdigit/eslint-athena-plugin 1.0.0-PR.2-2335 → 1.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 CHANGED
@@ -1 +1,120 @@
1
- {"name":"@checkdigit/eslint-athena-plugin","version":"1.0.0-PR.2-2335","private":false,"description":"Check Digit eslint plugins to enforce best practices for projects using Athena SQL.","keywords":["eslint","athena"],"homepage":"https://github.com/checkdigit/eslint-athena-plugin#readme","bugs":{"url":"https://github.com/checkdigit/eslint-athena-plugin/issues"},"repository":{"type":"git","url":"https://github.com/checkdigit/eslint-athena-plugin"},"license":"MIT","author":"Check Digit, LLC","sideEffects":false,"type":"module","exports":{".":{"types":"./dist-types/index.d.ts","import":"./dist-mjs/index.mjs","default":"./dist-mjs/index.mjs"}},"files":["src","dist-types","dist-mjs","!src/**/test/**","!src/**/*.test.ts","!src/**/*.spec.ts","!dist-types/**/test/**","!dist-types/**/*.test.d.ts","!dist-types/**/*.spec.d.ts","!dist-mjs/**/test/**","!dist-mjs/**/*.test.mjs","!dist-mjs/**/*.spec.mjs","SECURITY.md"],"scripts":{"build:dist-mjs":"npm run rimraf -- dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs","build:dist-types":"npm run rimraf -- dist-types && npx builder --type=types --outDir=dist-types","ci:compile":"tsc --noEmit","ci:coverage":"jest --coverage=true","ci:lint":"npm run lint","ci:style":"npm run prettier","ci:test":"jest --coverage=false","lint":"eslint --max-warnings 0 .","lint:fix":"eslint . --fix","peggy":"for file in ./src/peggy/*.peggy; do peggy \"$file\" --format es --output \"${file%.peggy}-peggy.ts\"; done","peggy-watch":"for file in ./src/peggy/*.peggy; do peggy \"$file\" --format=es --watch --output=\"${file%.peggy}-peggy.ts\"; done","prepare":"","prepublishOnly":"npm run build:dist-types && npm run build:dist-mjs","prettier":"prettier . --check","prettier:fix":"prettier . --write","rimraf":"node -e \"const {rmSync,globSync}=require('node:fs');process.argv.slice(1).forEach(p=>p.includes('*')?globSync(p).forEach(f=>rmSync(f,{force:true})):rmSync(p,{recursive:true,force:true}))\"","test":"npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style"},"prettier":"@checkdigit/prettier-config","jest":{"preset":"@checkdigit/jest-config"},"dependencies":{"@apidevtools/json-schema-ref-parser":"^15.4.0","@typescript-eslint/type-utils":"^8.63.0","@typescript-eslint/utils":"^8.63.0","ajv":"^8.20.0","debug":"^4.4.3","glob":"^13.0.6","http-status-codes":"^2.3.0","js-yaml":"^4.2.0","json-pointer":"^0.6.2","jsonpath-plus":"^10.4.0","ts-api-utils":"^2.5.0"},"devDependencies":{"@checkdigit/jest-config":"^6.0.2","@checkdigit/prettier-config":"^8.1.0","@checkdigit/typescript-config":"10.0.0","@eslint/js":"^9.37.0","@types/debug":"^4.1.13","@types/eslint":"^9.6.1","@types/eslint-config-prettier":"^6.11.3","@types/js-yaml":"^4.0.9","@types/json-pointer":"^1.0.34","@typescript-eslint/parser":"^8.63.0","@typescript-eslint/rule-tester":"^8.63.0","eslint":"^9.37.0","eslint-config-prettier":"^10.1.8","eslint-import-resolver-typescript":"^4.4.5","eslint-plugin-eslint-plugin":"^6.4.0","eslint-plugin-import":"^2.32.0","eslint-plugin-no-only-tests":"^3.4.0","eslint-plugin-no-secrets":"^2.3.3","eslint-plugin-node":"^11.1.0","eslint-plugin-sonarjs":"^1.0.4","openapi-types":"^12.1.3","peggy":"^4.2.0","typescript-eslint":"^8.63.0"},"peerDependencies":{"eslint":">=9 <10"},"engines":{"node":">=24.14.1"},"service":{"api":{"root":"src","endpoints":["api/v1","api/v2"]}}}
1
+ {
2
+ "name": "@checkdigit/eslint-athena-plugin",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "description": "Check Digit eslint plugins to enforce best practices for projects using Athena SQL.",
6
+ "keywords": [
7
+ "eslint",
8
+ "athena"
9
+ ],
10
+ "homepage": "https://github.com/checkdigit/eslint-athena-plugin#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/checkdigit/eslint-athena-plugin/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/checkdigit/eslint-athena-plugin"
17
+ },
18
+ "license": "MIT",
19
+ "author": "Check Digit, LLC",
20
+ "sideEffects": false,
21
+ "type": "module",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist-types/index.d.ts",
25
+ "import": "./dist-mjs/index.mjs",
26
+ "default": "./dist-mjs/index.mjs"
27
+ }
28
+ },
29
+ "files": [
30
+ "src",
31
+ "dist-types",
32
+ "dist-mjs",
33
+ "!src/**/test/**",
34
+ "!src/**/*.test.ts",
35
+ "!src/**/*.spec.ts",
36
+ "!dist-types/**/test/**",
37
+ "!dist-types/**/*.test.d.ts",
38
+ "!dist-types/**/*.spec.d.ts",
39
+ "!dist-mjs/**/test/**",
40
+ "!dist-mjs/**/*.test.mjs",
41
+ "!dist-mjs/**/*.spec.mjs",
42
+ "SECURITY.md"
43
+ ],
44
+ "scripts": {
45
+ "build:dist-mjs": "npm run rimraf -- dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
46
+ "build:dist-types": "npm run rimraf -- dist-types && npx builder --type=types --outDir=dist-types",
47
+ "ci:compile": "tsc --noEmit",
48
+ "ci:coverage": "jest --coverage=true",
49
+ "ci:lint": "npm run lint",
50
+ "ci:style": "npm run prettier",
51
+ "ci:test": "jest --coverage=false",
52
+ "lint": "eslint --max-warnings 0 .",
53
+ "lint:fix": "eslint . --fix",
54
+ "peggy": "for file in ./src/peggy/*.peggy; do peggy \"$file\" --format es --output \"${file%.peggy}-peggy.ts\"; done",
55
+ "peggy-watch": "for file in ./src/peggy/*.peggy; do peggy \"$file\" --format=es --watch --output=\"${file%.peggy}-peggy.ts\"; done",
56
+ "prepare": "",
57
+ "prepublishOnly": "npm run build:dist-types && npm run build:dist-mjs",
58
+ "prettier": "prettier . --check",
59
+ "prettier:fix": "prettier . --write",
60
+ "rimraf": "node -e \"const {rmSync,globSync}=require('node:fs');process.argv.slice(1).forEach(p=>p.includes('*')?globSync(p).forEach(f=>rmSync(f,{force:true})):rmSync(p,{recursive:true,force:true}))\"",
61
+ "test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style"
62
+ },
63
+ "prettier": "@checkdigit/prettier-config",
64
+ "jest": {
65
+ "preset": "@checkdigit/jest-config"
66
+ },
67
+ "dependencies": {
68
+ "@apidevtools/json-schema-ref-parser": "^15.4.0",
69
+ "@typescript-eslint/type-utils": "^8.63.0",
70
+ "@typescript-eslint/utils": "^8.63.0",
71
+ "ajv": "^8.20.0",
72
+ "debug": "^4.4.3",
73
+ "glob": "^13.0.6",
74
+ "http-status-codes": "^2.3.0",
75
+ "js-yaml": "^4.2.0",
76
+ "json-pointer": "^0.6.2",
77
+ "jsonpath-plus": "^10.4.0",
78
+ "ts-api-utils": "^2.5.0"
79
+ },
80
+ "devDependencies": {
81
+ "@checkdigit/jest-config": "^6.0.2",
82
+ "@checkdigit/prettier-config": "^8.1.0",
83
+ "@checkdigit/typescript-config": "10.0.0",
84
+ "@eslint/js": "^9.37.0",
85
+ "@types/debug": "^4.1.13",
86
+ "@types/eslint": "^9.6.1",
87
+ "@types/eslint-config-prettier": "^6.11.3",
88
+ "@types/js-yaml": "^4.0.9",
89
+ "@types/json-pointer": "^1.0.34",
90
+ "@typescript-eslint/parser": "^8.63.0",
91
+ "@typescript-eslint/rule-tester": "^8.63.0",
92
+ "eslint": "^9.37.0",
93
+ "eslint-config-prettier": "^10.1.8",
94
+ "eslint-import-resolver-typescript": "^4.4.5",
95
+ "eslint-plugin-eslint-plugin": "^6.4.0",
96
+ "eslint-plugin-import": "^2.32.0",
97
+ "eslint-plugin-no-only-tests": "^3.4.0",
98
+ "eslint-plugin-no-secrets": "^2.3.3",
99
+ "eslint-plugin-node": "^11.1.0",
100
+ "eslint-plugin-sonarjs": "^1.0.4",
101
+ "openapi-types": "^12.1.3",
102
+ "peggy": "^4.2.0",
103
+ "typescript-eslint": "^8.63.0"
104
+ },
105
+ "peerDependencies": {
106
+ "eslint": ">=9 <10"
107
+ },
108
+ "engines": {
109
+ "node": ">=24.14.1"
110
+ },
111
+ "service": {
112
+ "api": {
113
+ "root": "src",
114
+ "endpoints": [
115
+ "api/v1",
116
+ "api/v2"
117
+ ]
118
+ }
119
+ }
120
+ }