-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.52 KB
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
{
"//": [
"================================================================================",
"# To work within the development environment, run the following tasks",
" 1. $ npm run dev",
" 3. Go to http://localhost:3001",
"================================================================================"
],
"name": "@aurodesignsystem/auro-button",
"version": "0.0.0",
"description": "Auro custom auro-button element",
"author": "Product design and research",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-button"
},
"type": "module",
"main": "dist/registered.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"lit": "^3.3.2"
},
"devDependencies": {
"@aurodesignsystem/auro-cli": "^3.5.1",
"@aurodesignsystem/auro-config": "^1.3.1",
"@aurodesignsystem/auro-library": "^5.5.6",
"@aurodesignsystem/auro-loader": "^6.1.0",
"@aurodesignsystem/design-tokens": "^8.12.2",
"@aurodesignsystem/webcorestylesheets": "10.1.4",
"husky": "^9.1.7",
"sinon": "^20.0.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 iOS major versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari major versions"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
],
"scripts": {
"build": "auro build",
"build:version": "node ./scripts/version.mjs",
"dev": "auro dev -w -s",
"dev:open": "auro dev -w -s --open",
"lint": "biome check --no-errors-on-unmatched && stylelint \"./src/**/*.scss\"",
"lint:fix": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\" --fix",
"test": "auro test",
"test:watch": "auro test --watch",
"prepare": "husky",
"test:coverage": "auro test --coverage-report --open"
},
"exports": {
"./package.json": "./package.json",
"./custom-elements.json": "./custom-elements.json",
"./readme.md": "./README.md",
".": "./dist/registered.js",
"./demo/*.md": "./demo/*.md",
"./demo/*.js": "./demo/*.min.js",
"./class": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"custom-elements.json",
"dist/**/*",
"demo/**/*",
"CHANGELOG.md",
"README.md",
"LICENSE",
"NOTICE"
],
"customElements": "custom-elements.json"
}