UNPKG

igniteui-theming

Version:

A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.

105 lines (104 loc) 3.73 kB
{ "name": "igniteui-theming", "version": "24.0.2", "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.", "main": "index.js", "scripts": { "clean": "npm run clean:json && npm run clean:docs", "clean:json": "shx rm -rf json", "clean:docs": "shx rm -rf docs", "clean:tailwind": "shx rm -rf tailwind", "build": "npm run clean && npm run build:json && npm run build:tailwind && npm run build:e2e", "build:docs": "npm run clean:docs && npm run build:docs:en:production", "build:docs:en:production": "set NODE_ENV=production && npx sassdoc ./sass -d docs", "build:docs:en:staging": "set NODE_ENV=staging && npx sassdoc ./sass -d docs", "build:e2e": "sass --quiet ./test/e2e/theme.scss ./test/e2e/theme.css", "build:json": "node scripts/buildJSON.mjs", "build:tailwind": "npm run clean:tailwind && node scripts/buildTailwind.mjs", "serve:docs": "npx http-server ./docs", "preview:palette": "node scripts/previewPalette.mjs", "lint": "npm run lint:styles && npm run lint:prettier", "lint:styles": "stylelint ./sass/**/*.scss --fix", "lint:prettier": "prettier \"./sass/**/*.scss\" --check --ignore-path .gitignore", "test": "jest", "format": "stylelint \"./sass/**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .gitignore && prettier \"./sass/**/*.{scss,css}\" --write --ignore-path .gitignore", "prepare": "husky install" }, "jest": { "testEnvironment": "jest-environment-node-single-context" }, "lint-staged": { "sass/**/*.{scss,css}": [ "npm run format" ] }, "files": [ "sass/", "json/", "tailwind/", "_index.scss" ], "repository": { "type": "git", "url": "git+https://github.com/IgniteUI/igniteui-theming.git" }, "keywords": [ "sass", "Ignite", "UI", "theming", "palettes", "elevations", "typography" ], "author": "Infragistics", "license": "MIT", "bugs": { "url": "https://github.com/IgniteUI/igniteui-theming/issues" }, "homepage": "https://github.com/IgniteUI/igniteui-theming#readme", "exports": { ".": { "sass": "./_index.scss", "tailwind": "./theme.css", "esm2020": "./index.js", "es2020": "./index.js", "es2015": "./index.js", "node": "./index.js", "default": "./index.js" }, "./functions": { "sass": "./sass/_functions.scss" }, "./sass/**/*.*": "./sass/**/*.*", "./tailwind/*": "./tailwind/*", "./json/colors/meta/multipliers.json": "./json/colors/meta/multipliers.json", "./json/colors/meta/palette.json": "./json/colors/meta/palette.json", "./json/colors/presets/palettes.json": "./json/colors/presets/palettes.json", "./json/elevations/indigo.json": "./json/elevations/indigo.json", "./json/elevations/material.json": "./json/elevations/material.json", "./json/typography/presets/typescales.json": "./json/typography/presets/typescales.json" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-prettier": "^5.1.3", "globby": "^13.1.4", "husky": "^8.0.3", "igniteui-sassdoc-theme": "^1.1.6", "jest": "^29.5.0", "jest-environment-node-single-context": "^29.0.0", "lunr": "^2.3.9", "postcss": "^8.4.35", "postcss-safe-parser": "^7.0.0", "prettier": "^3.2.5", "sass-embedded": "^1.92.1", "sass-true": "^9.0.0", "sassdoc-plugin-localization": "^2.0.0", "shx": "^0.3.4", "stylelint": "^15.6.2", "stylelint-config-standard-scss": "^7.0.1", "stylelint-scss": "^4.7.0" } }