-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.85 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
51
52
53
54
55
56
57
58
{
"name": "@optimization/lazy",
"version": "1.3.0",
"description": "A lightweight and high performance lazy loader and `element-in-view` callback based on [Intersection Observer V2](https://developers.google.com/web/updates/2019/02/intersectionobserver-v2) with an efficient polyfill for old browsers.",
"author": {
"name": "[email protected]",
"email": "[email protected]",
"web": "pagespeed.pro"
},
"keywords": [
"lazy",
"images",
"image",
"iframe",
"loader",
"intersectionobserver",
"feo",
"frontend",
"optimization",
"in-view",
"inview"
],
"homepage": "https://pagespeed.pro/lazy/",
"repository": {
"type": "git",
"url": "git+https://github.com/pagespeed-pro/lazy.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pagespeed-pro/lazy/issues"
},
"engines": {
"node": "~10"
},
"dependencies": {},
"devDependencies": {
"browserstack-local": "^1.3.7",
"chromedriver": "latest",
"express": "^4.16.4",
"grunt": "latest",
"grunt-closure-compiler": "latest",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-iife": "latest",
"js-combinatorics": "^0.5.4",
"matchdep": "^2.0.0",
"merge": "^1.2.1",
"mocha": "^3.0.2",
"selenium-webdriver": "^3.0.0-beta-3"
},
"scripts": {
"test-local": "forever -a --uid lazy-test-server start test/server.js && npm run chrome-headless && npm run stop-test",
"test": "npm run chrome-headless",
"stop-test": "forever stop test/server.js",
"chrome": "npm run chrome-headless",
"chrome-headless": "./node_modules/.bin/mocha test/specs/chrome-headless-tests.js"
}
}