-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "react-mock-component",
"version": "4.0.0",
"description": "Create type safe mock React components to use in tests",
"keywords": [
"tdd",
"react",
"spy",
"stub",
"mock",
"test",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/NiGhTTraX/react-mock-component.git"
},
"author": "Andrei Picus",
"license": "MIT",
"homepage": "https://github.com/NiGhTTraX/react-mock-component",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build",
"release": "standard-version",
"lint": "eslint --ext ts,tsx,js .",
"test": "jest --coverage"
},
"dependencies": {
"sinon": "~15.1.0"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@nighttrax/eslint-config-tsx": "~12.0.0-alpha.3",
"@tdd-buffet/jest-config": "~6.0.0",
"@tdd-buffet/tsconfig": "~1.0.5",
"@testing-library/dom": "~10.4.0",
"@testing-library/react": "~16.0.0",
"@types/jest": "~29.5.0",
"@types/node": "~22.8.0",
"@types/react": "~18.3.0",
"@types/react-dom": "~18.3.0",
"@types/sinon": "~17.0.0",
"eslint": "~8.57.0",
"jest": "~29.7.0",
"react": "~18.3.0",
"react-dom": "~18.3.0",
"standard-version": "~9.5.0",
"typescript": "~5.6.0"
}
}