-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.42 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
{
"name": "igniteui-theming",
"version": "1.0.0",
"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",
"build": "npm run build:json && 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 ./test/e2e/theme.scss ./test/e2e/theme.css",
"build:json": "node scripts/buildJSON.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/",
"_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",
"esm2020": "./index.js",
"es2020": "./index.js",
"es2015": "./index.js",
"node": "./index.js",
"default": "./index.js"
},
"./functions": {
"sass": "./sass/_functions.scss"
},
"./sass/**/*.*": "./sass/**/*.*",
"./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-true": "^7.0.0",
"sassdoc-plugin-localization": "^1.4.3",
"shx": "^0.3.4",
"stylelint": "^15.6.2",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-scss": "^4.7.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"sass": "^1.58.1"
}
}