-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "throttled-resize",
"version": "1.0.1",
"description": "ES6 throttled browser resize",
"main": "dist/index.js",
"scripts": {
"build": "babel index.js -o dist/index.js --presets es2015",
"test": "browserify -t [ babelify --presets [ es2015 ] ] test.js | testling"
},
"repository": {
"type": "git",
"url": "git://github.com/ehtb/throttled-resize.git"
},
"keywords": [
"resize throttled"
],
"author": "Edo Balvers <[email protected]>",
"contributors": [],
"license": "MIT",
"devDependencies": {
"babel-eslint": "^3.0.1",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "13.0.0",
"eslint": "^0.20.0",
"tape": "^4.0.0",
"testling": "~1.6.1"
},
"dependencies": {
"wolfy87-eventemitter": "^4.2.11"
},
"testling": {
"files": "test.js",
"browsers": [
"iexplore/8..latest",
"firefox/16..latest",
"chrome/22..latest",
"opera/11..latest",
"opera/next",
"safari/4..latest",
"ipad/6..latest",
"iphone/6..latest",
"android-browser/latest"
]
},
"bugs": {
"url": "https://github.com/ehtb/throttled-resize/issues"
},
"homepage": "https://github.com/ehtb/throttled-resize#readme"
}