-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.12 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
{
"name": "@aurodesignsystem/auro-library",
"version": "3.0.7",
"description": "This repository holds shared scripts, utilities, and workflows utilized across repositories along the Auro Design System.",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-library.git"
},
"main": "index.js",
"license": "Apache-2.0",
"engines": {
"node": "^20.x || ^22.x"
},
"bin": {
"generateDocs": "./bin/generateDocs.mjs"
},
"devDependencies": {
"@aurodesignsystem/eslint-config": "^1.3.2",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"eslint": "^9.8.0",
"eslint-plugin-jsdoc": "^48.0.2",
"husky": "^8.0.3",
"semantic-release": "^23.0.0",
"vitest": "^2.1.2"
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "beta",
"prerelease": true
}
],
"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": [
"./package.json",
"./CHANGELOG.md",
"./README.md",
"./docs/api.md"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"esLint": "eslint ./scripts/**/*.js",
"linters": "npm-run-all esLint",
"build:docs": "node scripts/build/generateReadme.mjs",
"test": "vitest --run",
"test:watch": "vitest"
},
"bugs": {
"url": "https://github.com/AlaskaAirlines/auro-library/issues"
},
"dependencies": {
"handlebars": "^4.7.8",
"markdown-magic": "^2.6.1",
"@floating-ui/dom": "^1.6.11",
"npm-run-all": "^4.1.5"
}
}