-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "@aurodesignsystem/eslint-config",
"version": "1.3.3",
"description": "Custom eslint config for Auro design system development",
"author": "Product engineering",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/eslint-config"
},
"engines": {
"node": "^18 || ^20"
},
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.1",
"eslint-plugin-detect-bad-words": "^1.0.7",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-lit-a11y": "^4.1.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"husky": "^4.3.8",
"semantic-release": "^23.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run postinstall",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "./CHANGELOG.md",
"changelogTitle": "# Semantic Release Automated Changelog"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"./CHANGELOG.md",
"package.json"
]
}
],
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"eslint config"
],
"scripts": {
"postinstall": "node packageScripts/postinstall.js"
}
}