-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "react-measure-it",
"version": "0.1.2",
"description": "React higher-order component (HOC) to get dimensions of a container while it resizes",
"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",
"doc": "dox -r < index.jsx | doxme --travis --readme > README.md",
"prepublish": "npm run build && npm run doc",
"test": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plusacht/react-measure-it.git"
},
"keywords": [
"react",
"dimensions",
"width",
"height",
"resize",
"react-component"
],
"author": "Claudio Romano",
"license": "MIT",
"bugs": {
"url": "https://github.com/plusacht/react-measure-it/issues"
},
"homepage": "https://github.com/plusacht/react-measure-it#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babelify": "^6.4.0",
"budo": "^5.1.3",
"dox": "^0.8.0",
"doxme": "^1.8.2",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.1.0",
"eslint-plugin-react": "^3.6.2",
"standard": "^5.3.1"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}