@mcptoolshop/a11y-ci 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +47 -0
  2. package/package.json +35 -35
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # @mcptoolshop/a11y-ci
2
+
3
+ [![npm](https://img.shields.io/npm/v/@mcptoolshop/a11y-ci)](https://www.npmjs.com/package/@mcptoolshop/a11y-ci)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/mcp-tool-shop-org/accessibility-suite/blob/main/LICENSE)
5
+
6
+ **npm wrapper for [a11y-ci](https://github.com/mcp-tool-shop-org/accessibility-suite/tree/main/src/a11y-ci) — CI gate for accessibility scorecards.**
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install @mcptoolshop/a11y-ci
12
+ ```
13
+
14
+ This package provides a CLI wrapper that installs and delegates to the Python `a11y-ci` tool from the [accessibility-suite](https://github.com/mcp-tool-shop-org/accessibility-suite) monorepo.
15
+
16
+ ## Usage
17
+
18
+ ```bash
19
+ npx @mcptoolshop/a11y-ci --help
20
+ npx @mcptoolshop/a11y-ci scan ./my-site
21
+ npx @mcptoolshop/a11y-ci report --format json
22
+ ```
23
+
24
+ ## What is a11y-ci?
25
+
26
+ a11y-ci is a CI/CD integration for accessibility checks. It runs WCAG compliance scans and generates scorecards that can be used as quality gates in your CI pipeline.
27
+
28
+ ### Features
29
+
30
+ - **CI-ready**: Designed for automated pipelines (GitHub Actions, GitLab CI, etc.)
31
+ - **WCAG compliance**: Tests against WCAG 2.1 AA guidelines
32
+ - **Scorecard output**: Machine-readable reports for pass/fail gating
33
+ - **Part of accessibility-suite**: Works alongside a11y-assist, a11y-lint, and a11y-evidence-engine
34
+
35
+ ## Requirements
36
+
37
+ - Node.js >= 18
38
+ - Python 3.10+ (installed automatically via postinstall if needed)
39
+
40
+ ## Links
41
+
42
+ - [GitHub Repository](https://github.com/mcp-tool-shop-org/accessibility-suite)
43
+ - [a11y-ci Source](https://github.com/mcp-tool-shop-org/accessibility-suite/tree/main/src/a11y-ci)
44
+
45
+ ## License
46
+
47
+ MIT
package/package.json CHANGED
@@ -1,35 +1,35 @@
1
- {
2
- "name": "@mcptoolshop/a11y-ci",
3
- "version": "0.2.1",
4
- "description": "npm wrapper for a11y-ci - CI gate for accessibility scorecards",
5
- "bin": {
6
- "a11y-ci": "./bin/a11y-ci.js"
7
- },
8
- "scripts": {
9
- "postinstall": "node postinstall.js"
10
- },
11
- "keywords": [
12
- "accessibility",
13
- "a11y",
14
- "ci",
15
- "testing",
16
- "wcag",
17
- "python",
18
- "wrapper"
19
- ],
20
- "author": "mcp-tool-shop <64996768+mcp-tool-shop@users.noreply.github.com>",
21
- "license": "MIT",
22
- "repository": {
23
- "type": "git",
24
- "url": "git+https://github.com/mcp-tool-shop-org/accessibility-suite.git",
25
- "directory": "src/a11y-ci/npm"
26
- },
27
- "homepage": "https://github.com/mcp-tool-shop-org/accessibility-suite#readme",
28
- "engines": {
29
- "node": ">=18.0.0"
30
- },
31
- "publishConfig": {
32
- "access": "public",
33
- "registry": "https://registry.npmjs.org"
34
- }
35
- }
1
+ {
2
+ "name": "@mcptoolshop/a11y-ci",
3
+ "version": "0.2.2",
4
+ "description": "npm wrapper for a11y-ci - CI gate for accessibility scorecards",
5
+ "bin": {
6
+ "a11y-ci": "./bin/a11y-ci.js"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node postinstall.js"
10
+ },
11
+ "keywords": [
12
+ "accessibility",
13
+ "a11y",
14
+ "ci",
15
+ "testing",
16
+ "wcag",
17
+ "python",
18
+ "wrapper"
19
+ ],
20
+ "author": "mcp-tool-shop <64996768+mcp-tool-shop@users.noreply.github.com>",
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/mcp-tool-shop-org/accessibility-suite.git",
25
+ "directory": "src/a11y-ci/npm"
26
+ },
27
+ "homepage": "https://github.com/mcp-tool-shop-org/accessibility-suite#readme",
28
+ "engines": {
29
+ "node": ">=18.0.0"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public",
33
+ "registry": "https://registry.npmjs.org"
34
+ }
35
+ }