forked from kessejones/react-sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "react-sweetalert2",
"version": "0.5.2",
"author": {
"name": "Kesse Jones"
},
"repository": {
"type": "git",
"url": "https://github.com/kessejones/react-sweetalert2.git"
},
"description": "A sweetalert2 wrapper to ReactJS",
"keywords": [
"react",
"reactjs",
"sweetalert",
"sweetalert2",
"alert",
"modal",
"popup",
"prompt",
"confirm"
],
"license": "Apache-2.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "rollup -cw",
"prod": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"rollup": "^3.23.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"sweetalert2": "^11.7.10"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}