95 lines
2.6 KiB
JSON
95 lines
2.6 KiB
JSON
{
|
|
"name": "eslint-plugin-jsx-a11y",
|
|
"version": "6.2.3",
|
|
"description": "Static AST checker for accessibility rules on JSX elements.",
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin",
|
|
"a11y",
|
|
"accessibility",
|
|
"jsx"
|
|
],
|
|
"author": "Ethan Cohen",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/evcohen/eslint-plugin-jsx-a11y"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "rimraf lib && babel src --out-dir lib --copy-files",
|
|
"coveralls": "cat ./reports/lcov.info | coveralls",
|
|
"create": "node ./scripts/create-rule",
|
|
"flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
|
|
"prepublish": "safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)",
|
|
"pretest": "npm run lint:fix && npm run flow",
|
|
"test": "npm run jest",
|
|
"test:ci": "npm run jest -- --ci --runInBand",
|
|
"jest": "jest --coverage __tests__/**/*"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.4.4",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-jest": "^24.0.0",
|
|
"babel-preset-airbnb": "^4.0.0",
|
|
"coveralls": "^3.0.1",
|
|
"eslint": "^3 || ^4 || ^5 || ^6",
|
|
"eslint-config-airbnb-base": "^13.0.0",
|
|
"eslint-plugin-flowtype": "^3.5.0",
|
|
"eslint-plugin-import": "^2.18.0",
|
|
"estraverse": "^4.2.0",
|
|
"expect": "^24.3.1",
|
|
"flow-bin": "^0.102.0",
|
|
"in-publish": "^2.0.0",
|
|
"jest": "^24.0.0",
|
|
"jscodeshift": "^0.6.0",
|
|
"minimist": "^1.2.0",
|
|
"object.assign": "^4.1.0",
|
|
"rimraf": "^2.6.3",
|
|
"safe-publish-latest": "^1.1.1",
|
|
"to-ast": "^1.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.4.5",
|
|
"aria-query": "^3.0.0",
|
|
"array-includes": "^3.0.3",
|
|
"ast-types-flow": "^0.0.7",
|
|
"axobject-query": "^2.0.2",
|
|
"damerau-levenshtein": "^1.0.4",
|
|
"emoji-regex": "^7.0.2",
|
|
"has": "^1.0.3",
|
|
"jsx-ast-utils": "^2.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^3 || ^4 || ^5 || ^6"
|
|
},
|
|
"jest": {
|
|
"coverageReporters": [
|
|
"lcov",
|
|
"html"
|
|
],
|
|
"coverageDirectory": "reports",
|
|
"roots": [
|
|
"__tests__"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"__tests__/__util__/"
|
|
],
|
|
"testEnvironment": "node"
|
|
},
|
|
"greenkeeper": {
|
|
"ignore": [
|
|
"jest",
|
|
"babel-jest"
|
|
]
|
|
}
|
|
}
|