-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"name": "react-data-test-id",
"version": "1.0.1",
"description": "A context-based utility for composing predictable & unique test IDs in React apps for test automation.",
"homepage": "https://github.com/vivekmunde/react-data-test-id",
"repository": {
"type": "git",
"url": "https://github.com/vivekmunde/react-data-test-id.git"
},
"bugs": {
"url": "https://github.com/vivekmunde/react-data-test-id/issues"
},
"keywords": [
"react",
"testing",
"data-testid",
"test-id",
"automation",
"qa"
],
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "rimraf coverage && vitest run --coverage --config vitest-config.mts",
"test:coverage": "rimraf coverage && vitest run --coverage --config vitest-config.mts",
"lint": "eslint --config eslint-config.js \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"prettier": "^3.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.6.0"
}
}