-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.25 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
{
"name": "@aurodesignsystem/design-tokens",
"version": "4.12.1",
"description": "Alaska Air Auro Design System token repository",
"homepage": "https://github.com/AlaskaAirlines/DesignTokens",
"author": "Alaska Airlines Product design and engineering",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/AuroDesignTokens"
},
"main": "src/",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"husky": "^9.1.6",
"npm-run-all": "^4.1.5",
"semantic-release": "^24.1.2",
"style-dictionary": "^3.9.2"
},
"scripts": {
"postinstall": "node packageScripts/postinstall.mjs",
"build": "npm run build:tokens",
"build:ci": "npm-run-all sweep test build:tokens postinstall",
"build:tokens": "node scripts/styleDictionary.js",
"test": "node scripts/jsonTest.js",
"sweep": "rm -rf dist/",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branch": "master",
"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",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"alaska airlines",
"css",
"properties",
"tokens"
],
"contributors": [
{
"name": "Dale Sande",
"email": "dale.sande@alaskaair.com"
},
{
"name": "Jason Baker",
"email": "jason.baker@alaskaair.com"
},
{
"name": "Jordan Jones",
"email": "jordan.jones4@alaskaair.com"
}
]
}