-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 897 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
36
37
38
39
{
"name": "size",
"version": "1.2.0",
"description": "Small util to centralize and debounce window 'resize' events.",
"main": "index.js",
"scripts": {
"test": "browserify test/index.js | tap-closer | smokestack | faucet",
"test-debug": "budo test/index.js --live"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/watsondg/size.git"
},
"keywords": [
"size",
"window",
"resize",
"innerwidth",
"innerheight",
"viewport",
"screen"
],
"author": "Florian Morel",
"license": "MIT",
"bugs": {
"url": "https://github.com/watsondg/size/issues"
},
"homepage": "https://github.com/watsondg/size#readme",
"devDependencies": {
"faucet": "0.0.1",
"smokestack": "^3.4.1",
"tap-closer": "^1.0.0",
"tape": "^4.5.1"
},
"dependencies": {
"debounce": "^1.0.0",
"tiny-emitter": "^1.0.2"
}
}