forked from alexkatz/react-tiny-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "react-tiny-popover",
"version": "3.4.2",
"repository": {
"type": "git",
"url": "https://github.com/alexkatz/react-tiny-popover.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"popover",
"react-popover",
"popout",
"pop",
"out"
],
"license": "MIT",
"author": "Alex Katz",
"description": "A simple and highly customizable popover react higher order component with no other dependencies! Typescript friendly.",
"scripts": {
"watch": "webpack --watch --mode=development",
"start-demo": "cd docs && yarn start"
},
"devDependencies": {
"@types/react": "^16.0.2",
"@types/react-dom": "^16.0.1",
"awesome-typescript-loader": "^3.2.3",
"copy-webpack-plugin": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"source-map-loader": "^0.2.2",
"tslint": "^5.7.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.3",
"webpack": "^4",
"webpack-cli": "^3.0.3"
},
"peerDependencies": {
"react": "^15.6.1 || ^16.0.0",
"react-dom": "^15.6.1 || ^16.0.0"
}
}