-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.45 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.45 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
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
{
"name": "wrapito",
"version": "0.0.0",
"packageManager": "npm@10.8.2",
"description": "🌯 🌯 Wrap you tests so that you can test both behaviour and components with less effort.",
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:publish": "npm publish --dry-run",
"build:types": "tsc --build",
"publish-package": "npm run build && npm publish",
"publish-package:beta": "npm run build && npm publish --tag beta",
"typecheck": "tsc --noEmit dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercadona/wrapito.git"
},
"keywords": [
"react",
"testing",
"test",
"unit",
"javascript",
"dom",
"js",
"wrap",
"component",
"mock",
"fetch",
"http",
"vitest"
],
"bugs": {
"url": "https://github.com/mercadona/wrapito/issues"
},
"homepage": "https://github.com/mercadona/wrapito#readme",
"dependencies": {
"chalk": "^5.6.2",
"deep-equal": "^2.2.3",
"jest-diff": "^29.7.0",
"object-hash": "^3.0.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/deep-equal": "^1.0.4",
"@types/node": "^20.10.5",
"@types/object-hash": "^3.0.6",
"@types/react": "^19.1.8",
"@types/react-router-dom": "^5.3.3",
"@vitest/coverage-istanbul": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-react": "^7.33.2",
"history": "^4.10.1",
"jsdom": "^26.1.0",
"prettier": "^3.1.1",
"react": "^19.1.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^5.3.4",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"tinyspy": "^2.2.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"@testing-library/jest-dom": ">=5.16.4",
"@testing-library/react": ">=14.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}