This repository was archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.23 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": "pa11y-sample-project",
"version": "2.0.0",
"description": "A sample web project demonstrating the pa11y accessibility tool.",
"scripts": {
"serve": "npm-run-all clean --parallel parcel-dev watchstyles --silent",
"build": "run-s clean parcel-build --silent",
"publish": "run-s clean parcel-build github-pages --silent",
"clean": "del dist",
"parcel-dev": "parcel *.pug --no-cache",
"parcel-build": "parcel build *.pug --public-url . --no-cache --no-source-maps",
"watchstyles": "onchange styles/* -- npm run lintstyles",
"lintstyles": "stylelint 'styles/*'",
"github-pages": "gh-pages -d dist",
"pa11y": "pa11y --runner axe --runner htmlcs",
"pa11yci": "pa11y-ci --config pa11yci/pa11yci.config.json",
"test-a11y": "start-server-and-test serve 1234 pa11yci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdlib/pa11y-sample-project.git"
},
"author": "JoelCDL",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdlib/pa11y-sample-project/issues"
},
"homepage": "https://github.com/cdlib/pa11y-sample-project#readme",
"devDependencies": {
"@fortawesome/fontawesome-pro": "^6.1.1",
"@parcel/optimizer-data-url": "^2.4.0",
"@parcel/transformer-inline-string": "^2.4.0",
"@parcel/transformer-pug": "^2.4.0",
"del-cli": "^4.0.1",
"gh-pages": "^3.2.3",
"modern-normalize": "^1.1.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"pa11y": "^6.1.1",
"pa11y-ci": "^3.0.1",
"parcel": "^2.4.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.6.0",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^25.0.0",
"stylelint-use-logical": "^1.1.0"
},
"alias": {
"fa-brands/*": "./node_modules/@fortawesome/fontawesome-pro/svgs/brands/$1",
"fa-light/*": "./node_modules/@fortawesome/fontawesome-pro/svgs/light/$1",
"fa-regular/*": "./node_modules/@fortawesome/fontawesome-pro/svgs/regular/$1",
"fa-solid/*": "./node_modules/@fortawesome/fontawesome-pro/svgs/solid/$1"
},
"browserslist": "defaults",
"@parcel/transformer-css": {
"drafts": {
"customMedia": true,
"nesting": true
}
},
"stylelint": {
"defaultSeverity": "warning",
"extends": [
"stylelint-config-standard",
"stylelint-config-sass-guidelines",
"stylelint-config-property-sort-order-smacss"
],
"plugins": [
"stylelint-use-logical"
],
"rules": {
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"blockless-after-blockless",
"first-nested"
]
}
],
"csstools/use-logical": "always",
"max-nesting-depth": [
1,
{
"ignore": [
"pseudo-classes"
],
"ignoreAtRules": [
"/^includes/",
"/^media/",
"/^supports/"
]
}
],
"order/properties-alphabetical-order": null,
"scss/selector-no-redundant-nesting-selector": null,
"selector-class-pattern": null,
"rule-empty-line-before": "always"
}
}
}