-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
134 lines (134 loc) · 3.88 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
{
"name": "@aurodesignsystem/webcorestylesheets",
"description": "Auro core foundation Sass UI Kit",
"version": "6.0.0",
"author": "Product design and research",
"main": "src/",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/WebCoreStyleSheets"
},
"engines": {
"node": "^18 || ^20"
},
"peerDependencies": {
"@aurodesignsystem/design-tokens": "^4.9.1",
"sass": "^1.42.1"
},
"dependencies": {
"chalk": "^5.3.0"
},
"devDependencies": {
"@aurodesignsystem/design-tokens": "^4.9.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.0",
"@semantic-release/npm": "^12.0.1",
"auto-changelog": "^2.3.0",
"concat": "^1.0.3",
"copyfiles": "^2.4.1",
"glob": "^11.0.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"live-server": "^1.2.1",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"replace-in-file": "^7.2.0",
"sass": "^1.77.8",
"sass-lint": "^1.13.1",
"sass-true": ">=6.1.0",
"sassdoc": "^2.7.3",
"semantic-release": "^24.1.0",
"stylelint": ">=13.13.1",
"stylelint-config-recommended": ">=5.0.0",
"stylelint-config-standard": ">=22.0.0"
},
"scripts": {
"copy:files": "copyfiles -u 1 -V './src/auroElement/**/*' ./dist",
"css:lint": "stylelint './results/css/*.css'",
"scss:lint": "stylelint './src/**/*.scss'",
"build": "npm-run-all test build:sassdoc build:sass:demo build:sass:test build:sass:essentials build:sass:essentials+ copy:files postinstall",
"build:ci": "npm-run-all sweep build",
"build:dev": "npm-run-all scss:lint build:sass:test css:lint jest",
"build:sassdoc": "sassdoc ./src -d ./docs && node scripts/sassdocTheme.js",
"build:sass:demo": "sass --no-source-map ./src/elementDemoStyles/:./dist/",
"build:sass:test": "sass --no-source-map ./tests/styleTest.scss:./results/css/testBuild.css",
"build:sass:essentials": "sass --no-source-map ./src/bundled/essentials.scss:./dist/bundled/essentials.css",
"build:sass:essentials+": "sass --no-source-map ./src/bundled/essentials+fv.scss:./dist/bundled/essentials+fv.css",
"sweep": "rm -rf ./dist ./results ./sassdoc",
"postinstall": "node packageScripts/postinstall.mjs",
"jest": "jest",
"test": "npm-run-all scss:lint build:sass:test css:lint jest",
"serve": "npm run build:sassdoc && node scripts/live-server.js",
"watch": "nodemon -e scss --watch tests --watch src --exec npm run build:dev",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
{
"name": "master"
},
{
"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": [
"./CHANGELOG.md",
"./package.json",
"./docs/index.html"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"alaska airlines",
"auro design system",
"css",
"sass"
],
"contributors": [
{
"name": "Dale Sande",
"email": "dale.sande@alaskaair.com"
},
{
"name": "Jason Baker",
"email": "jason.baker@alaskaair.com"
},
{
"name": "Camron Lockeby",
"email": "camron.lockeby@alaskaair.com"
},
{
"name": "Kevin Sonnichsen",
"email": "Kevin.Sonnichsen@alaskaair.com"
}
]
}