package.json
3.76 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"_from": "eslint-plugin-jsx-a11y@^6.3.1",
"_id": "eslint-plugin-jsx-a11y@6.4.1",
"_inBundle": false,
"_integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==",
"_location": "/eslint-plugin-jsx-a11y",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "eslint-plugin-jsx-a11y@^6.3.1",
"name": "eslint-plugin-jsx-a11y",
"escapedName": "eslint-plugin-jsx-a11y",
"rawSpec": "^6.3.1",
"saveSpec": null,
"fetchSpec": "^6.3.1"
},
"_requiredBy": [
"/react-scripts"
],
"_resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz",
"_shasum": "a2d84caa49756942f42f1ffab9002436391718fd",
"_spec": "eslint-plugin-jsx-a11y@^6.3.1",
"_where": "C:\\Users\\kkwan_000\\Desktop\\git\\2017110269\\minsung\\node_modules\\react-scripts",
"author": {
"name": "Ethan Cohen"
},
"bugs": {
"url": "https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"
},
"bundleDependencies": false,
"dependencies": {
"@babel/runtime": "^7.11.2",
"aria-query": "^4.2.2",
"array-includes": "^3.1.1",
"ast-types-flow": "^0.0.7",
"axe-core": "^4.0.2",
"axobject-query": "^2.2.0",
"damerau-levenshtein": "^1.0.6",
"emoji-regex": "^9.0.0",
"has": "^1.0.3",
"jsx-ast-utils": "^3.1.0",
"language-tags": "^1.0.5"
},
"deprecated": false,
"description": "Static AST checker for accessibility rules on JSX elements.",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-preset-airbnb": "^5.0.0",
"coveralls": "^3.1.0",
"eslint": "^3 || ^4 || ^5 || ^6 || ^7",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"estraverse": "^5.2.0",
"expect": "^24.9.0",
"flow-bin": "^0.113.0",
"in-publish": "^2.0.1",
"jest": "^24.9.0",
"jscodeshift": "^0.7.0",
"minimist": "^1.2.5",
"object.assign": "^4.1.1",
"rimraf": "^3.0.2",
"safe-publish-latest": "^1.1.4",
"to-ast": "^1.0.0"
},
"engines": {
"node": ">=4.0"
},
"greenkeeper": {
"ignore": [
"jest",
"babel-jest"
]
},
"homepage": "https://github.com/evcohen/eslint-plugin-jsx-a11y#readme",
"jest": {
"coverageReporters": [
"lcov",
"html"
],
"coverageDirectory": "reports",
"roots": [
"__tests__"
],
"testPathIgnorePatterns": [
"__tests__/__util__/"
],
"testEnvironment": "node"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"a11y",
"accessibility",
"jsx"
],
"license": "MIT",
"main": "lib/index.js",
"name": "eslint-plugin-jsx-a11y",
"peerDependencies": {
"eslint": "^3 || ^4 || ^5 || ^6 || ^7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git"
},
"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",
"jest": "jest --coverage __tests__/**/*",
"lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
"lint:fix": "npm run lint -- --fix",
"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"
},
"version": "6.4.1"
}