-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
54 lines (54 loc) · 1.31 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-confirm",
"version": "0.3.0-7",
"description": "Small library which makes your Dialog component callable",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/haradakunihiko/react-confirm.git"
},
"bugs": {
"url": "https://github.com/haradakunihiko/react-confirm/issues"
},
"keywords": [
"react",
"reactjs",
"confirm"
],
"homepage": "https://github.com/haradakunihiko/react-confirm",
"files": [
"lib",
"src",
"typescript"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build",
"test": "jest"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^3.0.2"
},
"dependencies": {},
"typings": "typescript/index.d.ts"
}