-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.15 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@kong/eslint-config-kong-ui",
"version": "1.1.6",
"description": "Sharable ESLint configuration for Kong's frontend repositories",
"main": "configs/index.mjs",
"type": "module",
"files": [
"configs"
],
"exports": {
".": "./configs/index.mjs",
"./default": "./configs/index.mjs",
"./json": "./configs/json.mjs",
"./cypress": "./configs/cypress.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"semantic-release": "semantic-release",
"commit": "cz"
},
"dependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.12.1",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.3.0",
"jsonc-eslint-parser": "^2.4.0",
"typescript-eslint": "^8.18.0",
"vue-eslint-parser": "^9.4.3"
},
"peerDependencies": {
"eslint": ">= 9.16.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.6.15",
"@semantic-release/changelog": "^6.0.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"semantic-release": "^24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/eslint-config-kong-ui.git"
},
"keywords": [
"eslint",
"eslintconfig",
"kong"
],
"author": {
"name": "Kong Inc.",
"url": "https://konghq.com/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Kong/eslint-config-kong-ui/issues"
},
"homepage": "https://github.com/Kong/eslint-config-kong-ui#readme",
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"src/component-list.ts",
"scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap"
]
}
],
"@semantic-release/github"
]
},
"engines": {
"node": ">=18.0.0 || >=20.13.1"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.12.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
}
}