forked from vvo/in-viewport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 961 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
{
"name": "in-viewport",
"version": "3.4.1",
"description": "Get a callback when an element enters the viewport (body) or a custom viewport",
"main": "./in-viewport.js",
"scripts": {
"build": "browserify ./in-viewport.js -s inViewport -p deumdify | ccjs - > build/in-viewport.min.js",
"watch": "watchify ./in-viewport.js -d -s inViewport -p deumdify -o build/in-viewport.min.js -v",
"dev": "npm run watch & DEBUG=zuul* zuul --local 8080 -- test/*.js",
"test": "npm run build && DEBUG=zuul* zuul --tunnel ngrok -- test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/vvo/in-viewport.git"
},
"author": "Vincent Voyer <[email protected]> (http://github.com/vvo)",
"license": "MIT",
"devDependencies": {
"browserify": "^12.0.1",
"closurecompiler": "^1.5.2",
"deumdify": "^1.2.2",
"merge": "1.2.0",
"watchify": "^3.6.1",
"zuul": "^3.11.0",
"zuul-ngrok": "^4.0.0"
}
}