Socket
Socket
Sign inDemoInstall

a11y-checker

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 2.0.0

.babelrc

27

package.json
{
"name": "a11y-checker",
"version": "1.0.0",
"version": "2.0.0",
"description": "Identifies accessibility issues in your code.",
"main": "a11y.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"start": "npm-run-all --parallel dev:server lint:watch",
"dev:server": "webpack-dev-server --hot --inline",
"watch": "webpack -w -d",
"build": "webpack -p",
"lint": "node_modules/.bin/esw webpack.config.* src --color",
"lint:watch": "npm run lint -- --watch"
},

@@ -13,2 +18,5 @@ "repository": {

},
"bugs": {
"url": "https://github.com/Muhnad/a11y-checker/issues"
},
"keywords": [

@@ -24,6 +32,13 @@ "a11y",

"license": "MIT",
"bugs": {
"url": "https://github.com/Muhnad/a11y-checker/issues"
},
"homepage": "https://github.com/Muhnad/a11y-checker#readme"
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-watch": "^2.1.14",
"npm-run-all": "^4.0.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}

@@ -1,12 +0,21 @@

# a11y checker
warn about HTML Markup code accessiability issue
![a11y](a11y.png?raw=true "a11y")
## Installation
First, Download the `a11y.js`
Second, include it before `</body>`
```html
<script src="a11y.js"></script>
```
## Contribute
* clone project
```bash
git clone git@github.com:Muhnad/a11y-checker.git
```
* `cd a11y-checker/`
* `npm i`
* `npm start` to run eslint on watch mode and server at localhost:8080.
* `npm run build` to generate a minified, production-ready build.
## Files structure
- src: for development files.
- head: for check everything happens inside `<head>`
- body: for check everything happens inside `<body>`
- dist: for production usage.
## Rules
[Docs](https://github.com/Muhnad/a11y-checker/tree/master/docs)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc