-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 844 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
35
{
"name": "resize-event",
"version": "2.0.1",
"description": "Detect resize on an element without polling or iframes",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "budo example.js",
"test": "budo test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shama/resize-event.git"
},
"keywords": [
"resize",
"event",
"element"
],
"author": "Kyle Robinson Young <[email protected]> (http://dontkry.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shama/resize-event/issues"
},
"homepage": "https://github.com/shama/resize-event#readme",
"devDependencies": {
"browserify": "^16.5.1",
"budo": "^11.6.3",
"object-assign": "^4.1.1",
"tape": "^5.0.1"
},
"dependencies": {
"mutationobserver-shim": "^0.3.5"
}
}