-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 875 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
{
"name": "browser-size",
"version": "0.1.0",
"description": "Get the window size of the browser and throttled resize events.",
"main": "dist/index.js",
"scripts": {
"compile": "babel index.js > dist/index.js",
"test": "browserify test/index.js | tape-run -b phantom"
},
"repository": {
"type": "git",
"url": "[email protected]:pvalentim/browser-size.git"
},
"keywords": [
"browser",
"window",
"resize",
"responsive"
],
"author": "Pedro Valentim",
"license": "MIT",
"bugs": {
"url": "https://github.com/pvalentim/browser-size/issues"
},
"homepage": "https://github.com/pvalentim/browser-size",
"dependencies": {
"lodash.throttle": "^3.0.1",
"pragma-singleton": "^1.0.3"
},
"devDependencies": {
"babel": "^4.0.2",
"browserify": "^8.1.3",
"tape": "^3.5.0",
"tape-run": "^0.3.0"
}
}