-
Notifications
You must be signed in to change notification settings - Fork 2
/
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.6.0",
"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.module.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "rollup -cw",
"prod": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^26.0.23",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"rollup": "^2.36.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"sweetalert2": "^11.7.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}