forked from jsx-eslint/eslint-plugin-jsx-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "eslint-plugin-jsx-a11y",
"version": "6.1.1",
"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": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^21.2.0",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"estraverse": "^4.2.0",
"expect": "^21.2.1",
"flow-bin": "^0.66.0",
"in-publish": "^2.0.0",
"jest": "^21.2.1",
"jscodeshift": "^0.4.0",
"minimist": "^1.2.0",
"object.assign": "^4.1.0",
"rimraf": "^2.6.2",
"safe-publish-latest": "^1.1.1",
"to-ast": "^1.0.0"
},
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"dependencies": {
"aria-query": "^3.0.0",
"array-includes": "^3.0.3",
"ast-types-flow": "^0.0.7",
"axobject-query": "^2.0.1",
"damerau-levenshtein": "^1.0.4",
"emoji-regex": "^6.5.1",
"has": "^1.0.3",
"jsx-ast-utils": "^2.0.1"
},
"peerDependencies": {
"eslint": "^3 || ^4 || ^5"
},
"jest": {
"coverageReporters": [
"lcov",
"html"
],
"coverageDirectory": "reports",
"roots": [
"<rootDir>/__tests__"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__util__"
],
"testEnvironment": "node"
},
"greenkeeper": {
"ignore": [
"jest",
"babel-jest"
]
}
}