-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
106 lines (106 loc) · 2.59 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
97
98
99
100
101
102
103
104
105
106
{
"name": "eslint-plugin-vuejs-accessibility",
"version": "2.4.1",
"description": "An eslint plugin for checking Vue.js files for accessibility",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --cache .",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "tsc -p tsconfig.build.json",
"test": "jest",
"test:integration": "jest --testTimeout 60000 --testRegex \".*\\.spec\\.ts$\"",
"release": "np",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"author": "Kevin Newton",
"license": "MIT",
"repository": "github:vue-a11y/eslint-plugin-vuejs-accessibility",
"bugs": {
"url": "https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/issues"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility#readme",
"keywords": [
"eslint",
"eslint-plugin",
"a11y",
"accessibility",
"vue",
"vuejs"
],
"peerDependencies": {
"eslint": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"aria-query": "^5.3.0",
"emoji-regex": "^10.0.0",
"vue-eslint-parser": "^9.0.1"
},
"devDependencies": {
"@types/aria-query": "^5.0.0",
"@types/eslint-scope": "^3.7.2",
"@types/jest": "^29.2.5",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.8.0",
"eslint-plugin-eslint-plugin": "^6.0.0",
"globals": "^15.0.0",
"husky": "^9.0.5",
"jest": "^29.2.2",
"np": "^10.0.4",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"semver": "^7.6.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.3.0",
"typescript": "5.7.2",
"vitepress": "1.5.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:eslint-plugin/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"eslint-plugin",
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"testRegex": ".test.ts$"
},
"prettier": {
"trailingComma": "none"
},
"directories": {
"doc": "docs"
}
}