-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "react-click-outside",
"version": "3.0.1",
"description": "A component wrapper that provides click outside detection.",
"main": "dist/index.js",
"scripts": {
"build": "npm test && babel -d dist index.js",
"demo": "budo demo/app.js -- -t babelify",
"lint": "eslint .",
"test": "jest",
"test:ci": "flow && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/kentor/react-click-outside"
},
"keywords": [
"click outside",
"higher order component",
"onclickoutside",
"react"
],
"author": "Kenneth Chung <ken70r@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentor/react-click-outside/issues"
},
"homepage": "https://github.com/kentor/react-click-outside",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.1",
"babel-jest": "21.2.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "14.4.0",
"budo": "10.0.4",
"create-react-class": "15.6.2",
"enzyme": "3.0.0",
"enzyme-adapter-react-16": "1.0.0",
"eslint": "4.8.0",
"eslint-config-kentor": "5.1.0",
"flow-bin": "0.65.0",
"jest": "21.2.1",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-test-renderer": "16.0.0"
},
"dependencies": {
"hoist-non-react-statics": "^2.1.1"
}
}