forked from react-container-query/resize-observer-lite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 938 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
34
{
"name": "resize-observer-lite",
"version": "0.2.3",
"description": "A ResizeObserver polyfill that has limited functionality of ResizeObserver.",
"repository": {
"type": "git",
"url": "git+https://github.com/d6u/resize-observer-lite.git"
},
"keywords": [],
"author": "Daiwei Lu <[email protected]> (http://daiwei.lu/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/d6u/resize-observer-lite/issues"
},
"homepage": "https://github.com/d6u/resize-observer-lite#readme",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"dependencies": {
"element-resize-detector": "1.1.13"
},
"devDependencies": {
"typescript": "2.7.1"
},
"scripts": {
"clean": "rm -rf lib",
"build": "tsc",
"pretest": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\"",
"preversion": "npm run clean && npm run build"
}
}