-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "eslint-plugin-jsx-a11y-x",
"version": "0.0.1",
"description": "An ESLint plugin to apply various a11y rules to JSX templates",
"main": "lib/main.js",
"files": [
"lib",
"!lib/test"
],
"scripts": {
"clean:build": "premove lib",
"clean:test": "premove coverage",
"build:js": "npm run clean:build && tsc",
"build": "npm run lint && npm run build:js",
"lint": "eslint src",
"format": "prettier --write src",
"test": "npm run build:js && npm run clean:test && c8 node --test",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-tooling/eslint-plugin-jsx-a11y-x.git"
},
"keywords": [
"jsx",
"a11y",
"eslint",
"eslint-plugin"
],
"author": "ES Tooling authors (https://github.com/es-tooling)",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-tooling/eslint-plugin-jsx-a11y-x/issues"
},
"homepage": "https://github.com/es-tooling/eslint-plugin-jsx-a11y-x#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.6",
"c8": "^10.1.2",
"eslint": "^9.12.0",
"eslint-plugin-depend": "^0.11.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"premove": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}