-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·47 lines (47 loc) · 1.14 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
{
"name": "react-outside-component",
"version": "0.1.4",
"description": "React component for handling outside clicks",
"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-outside-component.git"
},
"keywords": [
"react",
"outside",
"component",
"click",
"event"
],
"homepage": "https://github.com/fantua/react-outside-component",
"author": "Igor Machuzhak <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"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",
"react-dom": "^16.1.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^15.4.x || ^16.x",
"react-dom": "^15.4.x || ^16.x"
}
}