-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
104 lines (104 loc) · 4.39 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
103
104
{
"name": "checka11y-css",
"version": "2.3.3",
"description": "A CSS stylesheet to quickly highlight a11y concerns.",
"main": "checka11y.css",
"style": "checka11y.css",
"scripts": {
"prepublishOnly": "git-branch-is master && is-git-status-clean",
"serve": "open-cli ./test/index.html",
"build": "npm run build:expanded && npm run build:minify",
"build:expanded": "concurrently \"npm run build:expanded:main\" \"npm run build:expanded:errors\" \"npm run build:expanded:warnings\"",
"build:expanded:main": "sass --no-source-map src/checka11y.scss ./checka11y.css --style=compressed && sass --no-source-map ./checka11y.css ./checka11y.css --style=expanded && npx postcss checka11y.css --use autoprefixer --replace --no-map",
"build:expanded:errors": "sass --no-source-map src/errors/checka11y-errors.scss ./checka11y-errors.css --style=compressed && sass --no-source-map ./checka11y-errors.css ./checka11y-errors.css --style=expanded && npx postcss checka11y-errors.css --use autoprefixer --replace --no-map",
"build:expanded:warnings": "sass --no-source-map src/warnings/checka11y-warnings.scss ./checka11y-warnings.css --style=compressed && sass --no-source-map ./checka11y-warnings.css ./checka11y-warnings.css --style=expanded && npx postcss checka11y-warnings.css --use autoprefixer --replace --no-map",
"build:minify": "concurrently \"npm run build:minify:main\" \"npm run build:minify:errors\" \"npm run build:minify:warnings\"",
"build:minify:main": "cleancss --batch --batch-suffix .min checka11y.css",
"build:minify:errors": "cleancss --batch --batch-suffix .min checka11y-errors.css",
"build:minify:warnings": "cleancss --batch --batch-suffix .min checka11y-warnings.css",
"lint:check": "stylelint \"**/*.scss\" --max-warnings=0 --ignore-path .gitignore",
"lint:fix": "stylelint \"**/*.scss\" --max-warnings=0 --ignore-path .gitignore --fix",
"test": "cypress run",
"test:ui": "cypress open",
"has-no-changes": "is-git-status-clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackdomleo7/Checka11y.css.git"
},
"author": {
"name": "Jack Domleo",
"url": "https://jackdomleo.dev"
},
"contributors": [
"Jack Domleo <[email protected]> (https://jackdomleo.dev)",
"Dan Spratling <[email protected]> (https://github.com/danspratling)",
"Savvas Stephanides (https://github.com/SavvasStephanides)",
"Veeresh (https://github.com/veerreshr)",
"Devin Ford <[email protected]> (https://github.com/devindford)",
"Shaurya Vardhan <[email protected]> (https://github.com/wulforr)",
"Emma Dawson (https://github.com/emmalearnscode)",
"Andrey Kudryavtsev (https://github.com/cat-street)",
"Alvaro Montoro <[email protected]> (https://github.com/alvaromontoro)",
"Manaswini Munuguri (https://github.com/Manaswini1832)",
"Shona McKenzie (https://github.com/shonamckenzie)",
"Ashar Setiawan (https://github.com/azhsetiawan)",
"Bogdan Lazar (https://github.com/tricinel)",
"Martin Sidorov (https://github.com/Matrix278)",
"Shaddam Amru Hasibuan <[email protected]> (https:/github.com/shamahdotdev)",
"Tanner Dolby <[email protected]> (https://github.com/tannerdolby)",
"Elida Kirigo <[email protected]> (https://github.com/elidakirigo)"
],
"keywords": [
"checka11y",
"checkally",
"a11y",
"ally",
"accessibility"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jackdomleo7/Checka11y.css/issues"
},
"homepage": "https://checka11y.jackdomleo.dev",
"files": [
"src/*",
"checka11y.css",
"checka11y.min.css",
"checka11y-errors.css",
"checka11y-errors.min.css",
"checka11y-warnings.css",
"checka11y-warnings.min.css",
"postcss.config.js",
"README.md",
"LICENSE",
"CHANGELOG"
],
"devDependencies": {
"autoprefixer": "^10.4.14",
"clean-css": "^5.3.2",
"clean-css-cli": "^5.6.2",
"concurrently": "^7.6.0",
"cypress": "^13.3.0",
"git-branch-is": "^4.0.0",
"is-git-status-clean": "^1.0.0",
"open-cli": "^7.2.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"sass": "^1.60.0",
"stylelint": "^15.3.0",
"stylelint-config-standard-scss": "^7.0.1"
},
"peerDependencies": {
"sass": "1.x"
},
"peerDependenciesMeta": {
"sass": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
}
}