-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
115 lines (115 loc) · 2.44 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"version": "2.4.4",
"license": "MIT",
"name": "mui-modal-provider",
"author": "Quernest",
"repository": {
"type": "git",
"url": "https://github.com/Quernest/mui-modal-provider"
},
"keywords": [
"context",
"context-api",
"context-api-react",
"react",
"reactjs",
"react-component",
"react-modal",
"react-hooks",
"react-typescript",
"react-modal-component",
"react-modal-dialog",
"react-material-ui",
"material-ui",
"material-ui-components",
"material-ui-react",
"modal",
"mui",
"hooks",
"typescript",
"dialog"
],
"module": "dist/mui-modal-provider.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"test:coverage": "yarn test --coverage",
"lint": "tsdx lint",
"prepare": "install-peers && tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"branches": [
"master"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/test-utils/*",
"!src/index.ts"
],
"coverageReporters": [
"json",
"text",
"html"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"peerDependencies": {
"@types/react": "^16.8.6 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"husky": "^4.2.5",
"install-peers-cli": "^2.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^18.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.7.4"
}
}