This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "@zeecoder/react-resize-observer",
"version": "2.0.0",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"repository": "[email protected]:ZeeCoder/react-resize-observer.git",
"description": "A React component that allows you to use a ResizeObserver to measure an element's size.",
"author": "Viktor Hubert <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "karma start",
"test:build": "parcel build tests/index.js --out-dir tests/dist",
"prepublish": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"prop-types": "^15.6.2",
"resize-observer-polyfill": "^1.5.0"
},
"peerDependencies": {
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.2.3",
"babel-regenerator-runtime": "^6.5.0",
"delay": "^4.1.0",
"husky": "^1.1.2",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "^0.0.32",
"lint-staged": "^7.3.0",
"parcel-bundler": "^1.11.0",
"prettier": "^1.14.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3"
},
"publishConfig": {
"access": "public"
}
}