-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
153 lines (153 loc) · 4.75 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"//": [
"================================================================================",
"# To work within the development environment, run the following tasks",
" 1. $ npm run dev",
" 2. $ npm run serve",
" 3. Go to http://localhost:3001",
"================================================================================"
],
"name": "@aurodesignsystem/auro-badge",
"version": "2.3.0",
"description": "Auro custom auro-badge element",
"author": "Product design and research",
"engines": {
"node": "^18 || ^20"
},
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-badge"
},
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.2.0",
"lit": "^3.0.1"
},
"peerDependencies": {
"@alaskaairux/icons": "^4.0.7",
"@aurodesignsystem/design-tokens": "^4.1.1",
"@aurodesignsystem/webcorestylesheets": "^4.3.1"
},
"devDependencies": {
"@alaskaairux/icons": "^4.30.0",
"@aurodesignsystem/design-tokens": "^4.1.1",
"@aurodesignsystem/webcorestylesheets": "^5.0.4",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@open-wc/testing": "^3.2.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"@web/dev-server": "^0.4.0",
"@web/test-runner": "^0.18.0",
"autoprefixer": "^10.4.16",
"compression": "^1.7.4",
"concat": "^1.0.3",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"core-js": "^3.33.2",
"eslint": "^8.52.0",
"eslint-plugin-lit": "^1.10.1",
"husky": "^8.0.0",
"lodash": "^4.17.21",
"marked": "^9.1.5",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-discard-comments": "^6.0.0",
"rollup": "^4.2.0",
"rollup-plugin-serve": "^2.0.2",
"semantic-release": "^22.0.6",
"sinon": "^17.0.1",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.2.2",
"wc-sass-render": "^1.4.0",
"web-component-analyzer": "^2.0.0",
"whatwg-fetch": "^3.6.19",
"yaml-lint": "^1.2.4"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 iOS major versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari major versions"
],
"nodemonConfig": {
"ignore": [
"*-css.js",
"*.css"
]
},
"scripts": {
"build": "npm-run-all build:sass sass:render cssLint dist:js bundler postinstall build:api types",
"build:ci": "npm-run-all sweep build",
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render",
"build:api": "wca analyze 'src/auro-badge.js' --outFiles docs/api.md",
"build:watch": "nodemon -e scss,js --watch src --exec npm run build:dev:assets",
"bundler": "rollup -c",
"bundle:test": "rollup -c -w",
"postinstall": "node packageScripts/postinstall.mjs",
"cssLint": "stylelint \"./src/*.css\"",
"preCommit": "node scripts/pre-commit.mjs",
"dev": "concurrently --kill-others 'npm run build:watch' 'npm run serve'",
"dist:js": "copyfiles -u 1 -V './src/**/*.js' ./dist",
"sass:render": "sass-render src/*.css -t ./scripts/staticStyles-template.js",
"sweep": "rm -rf ./temp ./demo/css ./demo/fonts ./dist ./src/tokens | rm ./src/*.css ./src/*-css.js",
"esLint": "./node_modules/.bin/eslint src/auro-*.js",
"linters": "npm-run-all cssLint esLint",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"build:sass": "npm-run-all build:sass:component postCss:component sass:render",
"build:sass:dev": "npm-run-all build:sass:component postCss:component sass:render",
"build:sass:component": "sass --no-source-map src:src",
"postCss:component": "node ./scripts/postCss.js",
"serve": "web-dev-server --open demo/ --node-resolve --watch",
"prepare": "husky install",
"types": "tsc"
},
"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",
"web components"
]
}