forked from digidem/react-dimensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "react-dimensions",
"version": "2.0.0-alpha1",
"description": "React [higher-order component](https://gist.github.com/sebmarkbage/ef0bf1f338a7182b6775) to get dimensions of container",
"main": "index.js",
"standard": {
"parser": "babel-eslint"
},
"scripts": {
"start": "./node_modules/.bin/budo example.jsx --live --open -- -t babelify",
"build": "npm test && babel index.jsx -o index.js",
"prepublish": "npm run build",
"test": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/react-dimensions.git"
},
"files": [
"index.js"
],
"keywords": [
"react",
"dimensions",
"width",
"resize"
],
"author": "Gregor MacLennan",
"license": "MIT",
"bugs": {
"url": "https://github.com/digidem/react-dimensions/issues"
},
"homepage": "https://github.com/digidem/react-dimensions#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"budo": "^8.2.1",
"eslint-config-standard": "^5.2.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-react": "^5.0.1",
"standard": "^6.0.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"element-resize-event": "^2.0.4",
"lodash.debounce": "^4.0.6"
}
}