-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.36 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": "wrapito",
"version": "0.0.0",
"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": "^4.1.2",
"deep-equal": "^2.2.3",
"jest-diff": "^29.7.0",
"object-hash": "^3.0.0",
"rimraf": "^5.0.5",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^12.1.5",
"@types/deep-equal": "^1.0.4",
"@types/history": "^4.7.11",
"@types/node": "^20.10.5",
"@types/object-hash": "^3.0.6",
"@types/react": "^17.0.73",
"@types/react-dom": "^17.0.25",
"@vitest/coverage-istanbul": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^24.0.0",
"prettier": "^3.1.1",
"react": "^17.0.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.9",
"react-router-dom": "^5.3.4",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"rollup": "^4.9.1",
"tinyspy": "^2.2.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}