-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.7 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
{
"name": "react-popupify",
"version": "1.0.4",
"description": "React Popupify is a simple and easy to use popup component for React applications.",
"author": "Vidit Kushwaha <[email protected]> (https://viditkushwaha.com/)",
"license": "MIT",
"scripts": {
"dev": "cd playground && npm run dev",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:bundle",
"build:bundle": "microbundle --jsx React.createElement --jsxFragment React.Fragment",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"test": "jest"
},
"keywords": [
"react",
"popup",
"modal",
"react-popup",
"react-model",
"react-popupify",
"react-component"
],
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"coveralls": "^3.1.1",
"css-loader": "^7.1.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transformer-svg": "^2.0.2",
"lint-staged": "^15.2.5",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"rimraf": "^5.0.7",
"sass": "^1.77.4",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"main": "dist/bundle.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.js",
"umd:main": "dist/bundle.umd.js",
"unpkg": "dist/bundle.umd.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Vidit-Kushwaha/react-popupify.git"
},
"bugs": {
"url": "https://github.com/Vidit-Kushwaha/react-popupify/issues"
},
"homepage": "https://docs-react-popupify.onrender.com/",
"files": [
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}