-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.14 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
{
"name": "eslint-plugin-autotestid",
"version": "1.0.3",
"description": "ESLint plugin to enforce data-testid attributes on interactive elements for better testing",
"main": "src/index.js",
"type": "module",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"testing",
"testid",
"data-testid",
"react",
"jsx"
],
"author": "Yash Chavan (Hunt092)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hunt092/autoTestID.git"
},
"bugs": {
"url": "https://github.com/Hunt092/autoTestID/issues"
},
"homepage": "https://github.com/Hunt092/autoTestID#readme",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.22.0",
"vitest": "^3.2.4"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
}
}