-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "@catconsult/simplify-modal-control",
"version": "1.1.1",
"description": "Simplify React modal control flow",
"main": "./index.js",
"types": "./index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --watch",
"test:ci": "jest --ci",
"clean": "shx rm -rf dist",
"build": "npm run clean && tsc && shx cp package.json README.md ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Catalyst-Consulting-Group/simplify-modal-control.git"
},
"keywords": [
"modal",
"modal-control",
"popup",
"simplify-modal",
"open-modal",
"close-modal"
],
"author": "Wei J. Zheng",
"license": "MIT",
"bugs": {
"url": "https://github.com/Catalyst-Consulting-Group/simplify-modal-control/issues"
},
"homepage": "https://github.com/Catalyst-Consulting-Group/simplify-modal-control#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.21",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}