-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.03 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-modal-hoc",
"version": "0.1.3",
"description": "Simple React HOC for wrapping component with modal API",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "yarn run clean && yarn run build"
},
"repository": {
"type": "git",
"url": "https://github.com/fantua/react-modal-hoc.git"
},
"keywords": [
"react",
"react-hoc",
"modal"
],
"homepage": "https://github.com/fantua/react-modal-hoc",
"author": "Igor Machuzhak <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^16.1.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"prop-types": "^15.6.0",
"react-display-name": "^0.2.3"
},
"peerDependencies": {
"react": "^15.4.x || ^16.x"
}
}