-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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
{
"name": "react-ref-observe",
"version": "1.0.3",
"description": "Observe resizing and click outside for react components",
"main": "dist/observers.cjs.js",
"module": "dist/observers.esm.js",
"files": [
"dist",
"src",
"pages"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "yarn flow check",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArepRu/react-ref-observe.git"
},
"keywords": [
"react",
"onclick",
"onclickout",
"onclickoutside",
"onresize",
"resize"
],
"author": "Alexey Repin <arepru@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArepRu/react-ref-observe/issues"
},
"homepage": "https://github.com/ArepRu/react-ref-observe#readme",
"dependencies": {
"react": "^16.9.0",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"flow-bin": "^0.107.0",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-size-snapshot": "^0.10.0"
}
}