-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "react-widget-portal",
"version": "1.2.0",
"description": "react-widget-portal",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "tsc -w",
"cjs": "transform-es src -d cjs -c -t cjs",
"esm": "transform-es src -d esm -c -t esm",
"tsc": "tsc",
"clear": "rimraf lib cjs esm docs",
"demo": "packez server ./examples/index.js -d dist -w -c",
"docs": "packez build ./examples/index.js -d docs -c",
"build": "run-s clear tsc cjs esm docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-widget/portal.git"
},
"keywords": [
"react",
"portal",
"react-widget-portal"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-widget/portal/issues"
},
"files": [
"cjs",
"esm",
"lib",
"*.md"
],
"homepage": "https://github.com/react-widget/portal#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"babel-plugin-search-and-replace": "^1.0.1",
"npm-run-all": "^4.1.5",
"p-defer": "^3.0.0",
"packez": "^4.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"transform-es": "^5.0.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/runtime": "^7.9.6"
},
"browserslist": [
">=0.25%",
"not dead",
"not op_mini all",
"not Android 4.4.3-4.4.4",
"not ios_saf < 10",
"not Chrome < 50",
"firefox ESR"
]
}