eslint-config-chain-able
Version:
an opinionated ESLint configuration
81 lines (80 loc) • 2.31 kB
JSON
{
"name": "eslint-plugin-jsx-a11y",
"version": "5.1.0",
"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",
"prepublish": "npm run lint && npm run flow && npm run test && npm run build",
"coveralls": "cat ./reports/lcov.info | coveralls",
"flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
"lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint:fix && npm run flow",
"test": "jest --coverage __tests__/**/*",
"create": "node ./scripts/create-rule"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"coveralls": "^2.11.8",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"flow-bin": "^0.45.0",
"jest": "^20.0.0",
"jscodeshift": "^0.3.30",
"minimist": "^1.2.0",
"rimraf": "^2.5.2",
"to-ast": "^1.0.0"
},
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"dependencies": {
"aria-query": "^0.5.0",
"array-includes": "^3.0.3",
"ast-types-flow": "0.0.7",
"axobject-query": "^0.1.0",
"damerau-levenshtein": "^1.0.0",
"emoji-regex": "^6.1.0",
"jsx-ast-utils": "^1.4.0"
},
"peerDependencies": {
"eslint": "^2.10.2 || ^3 || ^4"
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"roots": [
"<rootDir>/__tests__"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__util__"
]
}
}