-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
95 lines (95 loc) · 2.73 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
{
"name": "@microsoft/eslint-plugin-fluentui-jsx-a11y",
"version": "3.0.0-alpha.1",
"description": "Static AST checker for accessibility rules on FluentUI JSX elements.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"a11y",
"accessibility",
"jsx",
"fluentui",
"javascript",
"typescript",
"lint",
"React",
"@fluentui/react-components",
"react-components"
],
"author": "Aubrey Quinn",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/eslint-plugin-fluentui-jsx-a11y"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"type": "commonjs",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "npm-run-all \"lint:*\"",
"lint:eslint-docs": "npm-run-all \"update:eslint-docs -- --check\"",
"lint:js": "eslint .",
"test": "jest",
"lint:docs": "markdownlint **/*.md",
"update:eslint-docs": "eslint-doc-generator",
"fix:md": "npm run lint:docs -- --fix",
"test:new": "jest",
"prepare": "husky",
"test:coverage": "jest --coverage",
"create": "node ./scripts/create-rule"
},
"dependencies": {
"eslint-plugin-header": "^3.1.1",
"jsx-ast-utils": "^3.3.3",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/eslint": "=7.2.10",
"@types/estree": "^1.0.5",
"@types/estree-jsx": "^1.0.5",
"@types/jest": "^29.5.13",
"@types/jsx-ast-utils": "^3.3.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"chai": "^4.3.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.6.0",
"eslint-doc-generator": "^1.7.1",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jscodeshift": "^17.0.0",
"markdownlint": "^0.28.1",
"markdownlint-cli": "^0.33.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"yargs": "^17.7.2"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}