-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "reactjs-resize-observer",
"version": "1.1.0",
"description": "A wrapper react component to observe the resizing of the dom element",
"main": "lib/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "rimraf lib/* && babel src -d lib/",
"build:docs": "rimraf docs/js/* && webpack --config webpack.config.docs.js",
"docs": "webpack-dev-server --config webpack.config.docs.js",
"prepare": "npm run build",
"flow": "flow",
"test": "jest",
"test:watch": "npm test -- --watchAll",
"coverage": "npm test -- --coverage",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudkumar/reactjs-resize-observer.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"resize",
"observe"
],
"author": "Sudhir Mitharwal",
"license": "ISC",
"bugs": {
"url": "https://github.com/sudkumar/reactjs-resize-observer/issues"
},
"homepage": "https://github.com/sudkumar/reactjs-resize-observer#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.47",
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/preset-flow": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.0-beta.3",
"babel-plugin-react-flow-props-to-prop-types": "^0.15.0",
"eslint": "^4.13.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.61.0",
"html-webpack-inline-chunk-plugin": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^23.4.1",
"np": "^2.18.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.3.3",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"watch": "^1.0.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
},
"dependencies": {
"core-js": "^2.5.3",
"resize-observer-polyfill": "^1.5.0"
}
}