-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.15 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
{
"name": "idrc-wcag-reporter",
"version": "1.0.0-alpha.1",
"description": "Eleventy project to build accessibility conformance reports in HTML from issues written in Markdown.",
"main": "eleventy.config.js",
"scripts": {
"build": "npm-run-all -l clean -s build:eleventy",
"build:eleventy": "eleventy",
"clean": "rimraf _site",
"debug": "DEBUG=Eleventy* eleventy",
"dev": "cross-env NODE_ENV=development eleventy --serve",
"lint": "run-s -l lint:*",
"lint:styles": "stylelint \"**/*.css\"",
"lint:scripts": "biome check .",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"start": "npm-run-all -l clean dev",
"test": "c8 --all --src src/_utils -r clover -r text ava",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inclusive-design/idrc-wcag-reporter.git"
},
"type": "module",
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/inclusive-design/idrc-wcag-reporter/issues"
},
"homepage": "https://github.com/inclusive-design/idrc-wcag-reporter#readme",
"dependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-img": "^4.0.2",
"@zachleat/table-saw": "^1.0.6",
"execa": "^9.3.0",
"linkedom": "^0.18.4",
"liquidjs": "10.20.2",
"new-github-issue-url": "^1.0.0",
"night-owl": "github:sdras/night-owl-vscode-theme",
"shiki": "^1.11.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^6.1.3",
"biome-config-fluid": "github:greatislander/biome-config-fluid",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"debug": "^4.3.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"markdownlint-cli2": "^0.14.0",
"markdownlint-config-fluid": "^0.1.5",
"npm-run-all2": "^6.0.0",
"rimraf": "^6.0.0",
"stylelint": "^16.6.1",
"stylelint-config-xo": "^1.0.2",
"stylelint-order": "^6.0.4"
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.{js,cjs,json,jsonc}": "biome check --write --no-errors-on-unmatched",
"*.md": ["markdownlint-cli2 --fix"]
}
}