-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
30 lines (30 loc) · 1000 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
{
"name": "lazyloadjs",
"version": "3.2.2",
"description": "Image lazy loading",
"main": "./lazyload.js",
"scripts": {
"build": "browserify ./lazyload.js -s lazyload -p deumdify > build/lazyload.js && ccjs build/lazyload.js > build/lazyload.min.js",
"watch": "watchify ./lazyload.js -d -s lazyload -p deumdify -o build/lazyload.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",
"examples": "http-server ./"
},
"repository": "vvo/lazyload",
"author": "Vincent Voyer <[email protected]> (http://github.com/vvo)",
"license": "MIT",
"dependencies": {
"in-viewport": "^3.4.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"closurecompiler": "^1.5.2",
"deumdify": "^1.2.2",
"express": "^4.13.3",
"http-server": "^0.8.5",
"merge": "^1.2.0",
"watchify": "^3.6.1",
"zuul": "^3.8.0",
"zuul-ngrok": "^3.2.0"
}
}