@aurodesignsystem/auro-hyperlink
Version:
auro-hyperlink HTML custom element
167 lines (166 loc) • 5.34 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": "3.5.0",
"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": "^18 || ^20"
},
"dependencies": {
"chalk": "^5.3.0",
"lit": "^3.1.1"
},
"peerDependencies": {
"@alaskaairux/design-tokens": "^3.15.5",
"@alaskaairux/icons": "^4.31.0",
"@aurodesignsystem/design-tokens": "^4.3.0",
"@aurodesignsystem/webcorestylesheets": "^5.0.5"
},
"devDependencies": {
"@alaskaairux/design-tokens": "^3.15.5",
"@alaskaairux/icons": "^4.31.0",
"@aurodesignsystem/auro-library": "^2.2.5",
"@aurodesignsystem/design-tokens": "^4.3.0",
"@aurodesignsystem/eslint-config": "^1.3.0",
"@aurodesignsystem/webcorestylesheets": "^5.0.5",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@web/dev-server": "^0.4.1",
"@web/test-runner": "^0.18.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"autoprefixer": "^10.4.17",
"compression": "^1.7.4",
"concat": "^1.0.3",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"core-js": "^3.35.0",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.2",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"markdown-magic": "^2.6.1",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-discard-comments": "^6.0.1",
"postcss-selector-replace": "^1.0.2",
"rollup": "^4.9.5",
"rollup-plugin-serve": "^2.0.2",
"sass": "^1.69.7",
"semantic-release": "^23.0.0",
"stylelint": "^16.1.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.0.0",
"typescript": "^5.3.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"
]
},
"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": [
"./package.json",
"./CHANGELOG.md",
"./README.md",
"./docs/api.md"
]
}
],
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
],
"scripts": {
"build": "npm-run-all build:sass sass:render scssLint dist:js bundler postinstall build:api build:docs",
"build:ci": "npm-run-all sweep build",
"build:api": "wca analyze 'src/auro-hyperlink.js' --outFiles docs/api.md",
"build:dev:assets": "npm-run-all build:sass:component postCss:component sass:render build:docs",
"build:docs": "node scripts/generateDocs.mjs",
"build:sass": "npm-run-all build:sass:component postCss:component sass:render",
"build:sass:component": "sass --no-source-map src:src",
"build:watch": "nodemon -e scss,js --watch src --exec npm run build:dev:assets",
"bundler": "rollup -c",
"bundler:test": "rollup -c -w",
"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 scripts/pre-commit.mjs",
"postCss:component": "node scripts/postCss.mjs",
"postinstall": "node packageScripts/postinstall.mjs",
"sass:render": "sass-render src/*.css -t ./scripts/staticStyles-template.js",
"scssLint": "stylelint \"./src/**/*.scss\"",
"serve": "web-dev-server --open demo/ --node-resolve --watch",
"sweep": "rm -rf ./demo/css ./dist | rm ./src/*.css ./src/*-css.js ./docs/api.md",
"test": "wtr --coverage",
"test:ci": "npm-run-all test lint",
"test:watch": "wtr --watch",
"prepare": "husky install",
"types": "tsc"
}
}