@aurodesignsystem/auro-hyperlink
Version:
auro-hyperlink HTML custom element
181 lines (180 loc) • 6.04 kB
JSON
{
"//": [
"================================================================================",
"# To work within the development environment, run the following tasks",
" 1. $ npm run dev",
" 2. Go to http://localhost:8000",
"================================================================================"
],
"name": "@aurodesignsystem/auro-hyperlink",
"version": "6.0.3",
"description": "auro-hyperlink HTML custom element",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-hyperlink"
},
"type": "module",
"main": "index.js",
"license": "Apache-2.0",
"engines": {
"node": "^20.x || ^22.x "
},
"dependencies": {
"@alaskaairux/icons": "^5.6.0",
"@aurodesignsystem/auro-button": "11.3.1",
"@aurodesignsystem/auro-icon": "^8.1.1",
"@aurodesignsystem/auro-library": "^5.3.2",
"@aurodesignsystem/design-tokens": "^8.3.0",
"@aurodesignsystem/webcorestylesheets": "10.0.2",
"chalk": "^5.4.1",
"lit": "^3.3.1"
},
"devDependencies": {
"@aurodesignsystem/eslint-config": "1.3.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.2",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.2",
"@webcomponents/webcomponentsjs": "^2.8.0",
"autoprefixer": "^10.4.21",
"compression": "^1.8.1",
"concat": "^1.0.3",
"concurrently": "^9.2.0",
"copyfiles": "^2.4.1",
"core-js": "^3.44.0",
"eslint": "^9.31.0",
"eslint-plugin-jsdoc": "^51.4.1",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"lodash": "^4.17.21",
"markdown-magic": "^3.7.0",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-discard-comments": "^7.0.4",
"postcss-selector-replace": "^1.0.2",
"postinstall-postinstall": "^2.1.0",
"rollup": "^4.45.1",
"rollup-plugin-serve": "^3.0.0",
"sass": "^1.89.2",
"semantic-release": "^24.2.7",
"stylelint": "^16.22.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^38.0.0",
"stylelint-config-standard-scss": "^15.0.1",
"stylelint-order": "^7.0.0",
"stylelint-scss": "^6.12.1",
"typescript": "^5.8.3",
"wc-sass-render": "^1.4.0",
"web-component-analyzer": "^2.0.0",
"whatwg-fetch": "^3.6.20",
"yaml-lint": "^1.7.0"
},
"overrides": {
"wc-sass-render": {
"sass": "$sass"
}
},
"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"
]
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"release": {
"branches": [
{
"name": "main"
},
{
"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": [
"./package.json",
"./CHANGELOG.md",
"./README.md",
"./docs/api.md",
"./demo/demo.md",
"./demo/apiExamples.md",
"./src/iconVersion.js"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
],
"scripts": {
"build": "npm-run-all build:version build:sass sass:render bundler types",
"build:test": "npm-run-all test linters",
"build:release": "npm-run-all build build:test build:api build:docs bundler postinstall",
"build:ci": "npm-run-all sweep build:release",
"build:api": "wca analyze 'scripts/wca/*' --outFiles docs/api.md",
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render build:docs",
"build:docs": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/generateDocs.mjs",
"build:sass": "npm-run-all build:sass:demo build:sass:component postCss:component sass:render",
"build:sass:demo": "sass --load-path=node_modules --no-source-map demo:demo",
"build:sass:component": "sass --load-path=node_modules --no-source-map src:src",
"build:version": "node scripts/version.mjs",
"build:watch": "nodemon -e scss,js,html --watch src --watch apiExamples --exec npm run build:dev:assets",
"bundler": "rollup -c",
"bundler:test": "rollup -c -w",
"scssLint": "stylelint \"./src/**/*.scss\"",
"dev": "concurrently --kill-others 'npm run build:watch' 'npm run serve'",
"dist:js": "copyfiles -u 1 -V './src/**/*.js' ./dist",
"esLint": "eslint src/auro-*.js",
"linters": "npm-run-all scssLint esLint",
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
"postCss:component": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/postCss.mjs",
"postinstall": "node packageScripts/postinstall.mjs",
"sass:render": "sass-render src/**/*.css -t ./node_modules/@aurodesignsystem/auro-library/scripts/build/staticStyles-template.js",
"serve": "web-dev-server --open",
"sweep": "rm -rf ./demo/css ./dist | rm ./src/**/*.css ./src/**/*-css.js",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"prepare": "husky",
"types": "tsc",
"postversion": "npm-run-all build:api build:docs"
}
}