@aurodesignsystem/auro-devops-component 1.0.0-rc-1.1
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/CHANGELOG.md +60 -0
- package/LICENSE +201 -0
- package/NOTICE +2 -0
- package/README.md +189 -0
- package/custom-elements.json +1628 -0
- package/demo/api.html +56 -0
- package/demo/api.js +1 -0
- package/demo/api.md +787 -0
- package/demo/api.min.js +3 -0
- package/demo/auro-slideshow.min.js +3327 -0
- package/demo/index.html +59 -0
- package/demo/index.js +6 -0
- package/demo/index.md +197 -0
- package/demo/index.min.js +6 -0
- package/dist/auro-slideshow-rYdnH7og.js +127 -0
- package/dist/index.d.ts +134 -0
- package/dist/index.js +1 -0
- package/dist/registered.js +1 -0
- package/package.json +91 -0
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"//": [
|
|
3
|
+
"================================================================================",
|
|
4
|
+
"# To work within the development environment, run the following tasks",
|
|
5
|
+
" 1. $ npm run dev",
|
|
6
|
+
" 2. Go to http://localhost:8000",
|
|
7
|
+
"================================================================================"
|
|
8
|
+
],
|
|
9
|
+
"name": "@aurodesignsystem/auro-devops-component",
|
|
10
|
+
"version": "1.0.0-rc-1.1",
|
|
11
|
+
"description": "Testing component based on an old version of auro-slideshow. Not intended to be used in other projects.",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/AlaskaAirlines/auro-devops-component"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "dist/registered.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": "^20.x || ^22.x"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"lit": "^3.3.1"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"embla-carousel": "^8.6.0",
|
|
28
|
+
"embla-carousel-auto-scroll": "^8.6.0",
|
|
29
|
+
"embla-carousel-autoplay": "^8.6.0",
|
|
30
|
+
"embla-carousel-class-names": "^8.6.0",
|
|
31
|
+
"@alaskaairux/icons": "^5.14.0",
|
|
32
|
+
"@aurodesignsystem/auro-button": "^12.3.0",
|
|
33
|
+
"@aurodesignsystem/auro-icon": "^9.1.0",
|
|
34
|
+
"@aurodesignsystem/auro-library": "^5.5.4",
|
|
35
|
+
"@aurodesignsystem/auro-cli": "^3.1.1",
|
|
36
|
+
"@aurodesignsystem/auro-config": "^1.3.0",
|
|
37
|
+
"@aurodesignsystem/design-tokens": "^8.6.0",
|
|
38
|
+
"@aurodesignsystem/webcorestylesheets": "^10.1.4",
|
|
39
|
+
"husky": "^9.1.7",
|
|
40
|
+
"sinon": "^21.0.0"
|
|
41
|
+
},
|
|
42
|
+
"browserslist": [
|
|
43
|
+
"last 2 Chrome versions",
|
|
44
|
+
"last 2 iOS major versions",
|
|
45
|
+
"last 2 Firefox versions",
|
|
46
|
+
"last 2 Edge versions",
|
|
47
|
+
"last 2 Safari major versions"
|
|
48
|
+
],
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"alaska airlines",
|
|
54
|
+
"auro",
|
|
55
|
+
"design system",
|
|
56
|
+
"web components"
|
|
57
|
+
],
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "auro build",
|
|
60
|
+
"build:version": "node ./scripts/version.mjs",
|
|
61
|
+
"dev": "auro dev -w -s --open",
|
|
62
|
+
"lint": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\"",
|
|
63
|
+
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
|
|
64
|
+
"test": "auro test",
|
|
65
|
+
"test:watch": "auro test --watch",
|
|
66
|
+
"test:coverage": "auro test --coverage-report --open",
|
|
67
|
+
"prepare": "husky"
|
|
68
|
+
},
|
|
69
|
+
"exports": {
|
|
70
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
71
|
+
"./readme.md": "./README.md",
|
|
72
|
+
".": "./dist/registered.js",
|
|
73
|
+
"./demo/*.md": "./demo/*.md",
|
|
74
|
+
"./demo/*.js": "./demo/*.min.js",
|
|
75
|
+
"./class": {
|
|
76
|
+
"module": "./dist/index.js",
|
|
77
|
+
"types": "./dist/index.d.ts",
|
|
78
|
+
"default": "./dist/index.js"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"files": [
|
|
82
|
+
"custom-elements.json",
|
|
83
|
+
"dist/**/*",
|
|
84
|
+
"demo/**/*",
|
|
85
|
+
"CHANGELOG.md",
|
|
86
|
+
"README.md",
|
|
87
|
+
"LICENSE",
|
|
88
|
+
"NOTICE"
|
|
89
|
+
],
|
|
90
|
+
"customElements": "custom-elements.json"
|
|
91
|
+
}
|