-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
150 lines (150 loc) · 4.57 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "material-ui-popup-state",
"version": "0.0.0-development",
"description": "easiest way to create menus, popovers, and poppers with material-ui",
"sideEffects": false,
"scripts": {
"start": "webpack-dev-server --config demo/webpack.config.js",
"build:demo": "rimraf demo-dist && cross-env NODE_ENV=production BABEL_ENV=es5 webpack --config demo/webpack.config.js && (cd demo; copy index.html ../demo-dist/) && copy .circleci/config.yml demo-dist/",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d demo-dist --dotfiles",
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/material-ui-popup-state.git"
},
"keywords": [
"material-ui",
"popup",
"menu",
"popover",
"boilerplate",
"render-props",
"react-hooks"
],
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/material-ui-popup-state/issues"
},
"homepage": "https://github.com/jcoreio/material-ui-popup-state#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.5",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^4.12.4",
"@jcoreio/toolchain-circle": "^4.12.4",
"@jcoreio/toolchain-esnext": "^4.12.4",
"@jcoreio/toolchain-flow": "^4.12.4",
"@jcoreio/toolchain-mocha": "^4.12.4",
"@jcoreio/toolchain-react": "^4.12.4",
"@jcoreio/toolchain-semantic-release": "^4.12.4",
"@jcoreio/toolchain-typescript": "^4.12.4",
"@mui/icons-material": "^6.2.0",
"@mui/material": "^6.2.0",
"@mui/styles": "6.2.0",
"@mui/types": "^7.2.19",
"@testing-library/react": "^16.1.0",
"@types/chai": "^4.3.5",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.13",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@typescript-eslint/typescript-estree": "^5.46.0",
"astx": "^2.1.3",
"babel-loader": "^9.1.0",
"chai": "^4.3.7",
"copy": "^0.3.2",
"core-js": "^3.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"flow-bin": "^0.145.0",
"gh-pages": "^2.0.1",
"glob": "^8.0.3",
"global-jsdom": "^25.0.0",
"jsdom": "^25.0.1",
"mocha": "^10.2.0",
"raw-loader": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^3.0.2",
"sinon": "^6.3.5",
"typescript": "^5.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"@types/prop-types": "^15.7.3",
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@mui/material": "^5.0.0 || ^6.0.0",
"@types/react": "^16.8.0 || ^17 || ^18 || ^19",
"react": "^16.8.0 || ^17 || ^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./index": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.mjs",
"default": "./dist/hooks.js"
},
"./HoverMenu": {
"types": "./dist/HoverMenu.d.ts",
"import": "./dist/HoverMenu.mjs",
"default": "./dist/HoverMenu.js"
},
"./HoverPopover": {
"types": "./dist/HoverPopover.d.ts",
"import": "./dist/HoverPopover.mjs",
"default": "./dist/HoverPopover.js"
},
"./chainEventHandlers": {
"types": "./dist/chainEventHandlers.d.ts",
"import": "./dist/chainEventHandlers.mjs",
"default": "./dist/chainEventHandlers.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"@jcoreio/toolchain": {
"migratedVersion": "4.12.4"
}
}