-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "@netojose/react-modal",
"version": "1.0.4",
"description": "A lightweight dialog component for React",
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netojose/react-modal.git"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"start": "webpack --watch",
"build": "webpack"
},
"homepage": "https://github.com/netojose/react-modal",
"bugs": "https://github.com/netojose/react-modal/issues",
"author": {
"name": "José neto",
"email": "[email protected]"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^13.5.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"tags": [
"react",
"modal",
"dialog"
],
"keywords": [
"react",
"react-component",
"modal",
"dialog"
]
}