-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "eslint-cdk-plugin",
"version": "1.0.2",
"description": "eslint plugin for AWS CDK projects",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"test": "vitest --run",
"lint": "eslint --fix --config eslint.config.mjs",
"type-check": "tsc --noEmit",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"docs:dev": "cd ./docs && pnpm install && pnpm run dev",
"docs:build": "cd ./docs && pnpm install && pnpm run build",
"docs:preview": "cd ./docs && pnpm install && pnpm run preview"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/estree": "^1.0.6",
"@types/node": "^22.9.0",
"@typescript-eslint/rule-tester": "^8.14.0",
"eslint-plugin-import": "^2.31.0",
"standard-version": "^9.5.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.5",
"eslint": "9.10.0"
},
"dependencies": {
"@typescript-eslint/utils": "^8.14.0"
},
"volta": {
"node": "22.11.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"aws",
"cdk"
],
"homepage": "https://eslint-cdk-plugin.dev/",
"repository": {
"type": "git",
"url": "https://github.com/ren-yamanashi/eslint-cdk-plugin.git"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"author": {
"name": "ren-yamanashi"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}