-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 906 Bytes
/
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
{
"name": "react-measurable",
"version": "1.0.2",
"description": "Get notified when your React component changes dimensions",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/hfour/react-measurable",
"author": "skid <jordanovskid@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/react": "^16.0.0",
"react": "^16.0.0",
"resize-observer-polyfill": "^1.5.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"parcel-bundler": "^1.10.3",
"prettier": "^1.15.3",
"typescript": "^3.2.1"
},
"scripts": {
"dev": "parcel serve -d build example/index.html",
"build": "tsc -p tsconfig.json"
},
"bugs": {
"url": "https://github.com/hfour/react-measurable/issues"
},
"files": [
"build/index.js",
"build/index.d.ts"
],
"homepage": "https://github.com/hfour/react-measurable#readme"
}