-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.41 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-observe-size",
"version": "0.3.0",
"description": "Observe element size in react, using ResizeObserver polyfill. Edit",
"main": "lib/ObserveSize.js",
"types": "lib/ObserveSize.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf lib/ && npx tsc --project . --declaration",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oberonamsterdam/react-observe-size.git"
},
"author": "Richard van Willegen",
"license": "MIT",
"bugs": {
"url": "https://github.com/oberonamsterdam/react-observe-size/issues"
},
"homepage": "https://github.com/oberonamsterdam/react-observe-size#readme",
"devDependencies": {
"@types/react": "^16.3.14",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.0.0",
"eslint-config-oberon": "^1.1.2",
"flow-bin": "^0.56.0",
"rimraf": "^2.6.2",
"typescript": "^2.8.3"
},
"dependencies": {
"react": "^16.3.2",
"resize-observer-polyfill": "^1.4.2"
},
"PeerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"eslintConfig": {
"extends": "oberon"
},
"babel": {
"presets": [
"flow",
"es2015",
"stage-0",
"react"
]
}
}