-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.33 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
{
"name": "puppeteer_sample",
"version": "1.0.0",
"description": "playground for puppeteer",
"main": "index.js",
"scripts": {
"test": "npm run simple_test && npm run iPhone && npm run logAllDevices && npm run controlViewportSize && npm run demoAut && npm run headlessScreenshot && npm run screenshot && npm run chromeFlags && npm run sound && npm run devTool_tracing",
"simple_test": "node test.js",
"iPhone": "node iPhone_Emulation.js",
"logAllDevices": "node puppeteer_logAllDevices.js",
"controlViewportSize": "node controlViewportSize.js",
"demoAut": "node demoAut.js",
"headlessScreenshot": "node screenshot_async_headless.js",
"headlessScraping": "node headlessScraping.js",
"screenshot": "node screenshot.js",
"chromeFlags": "node chromeFlags.js",
"sound": "node sound.js",
"devTool_tracing": "node devTool_tracing.js",
"network_monitor": "node network_monitor.js --device 'iPhone X' https://www.google.com"
},
"author": "Hani Khan",
"license": "ISC",
"dependencies": {
"chrome-har": "^0.10.0",
"page-weight": "^0.2.2",
"puppeteer": "^1.9.0",
"url-exists": "^1.0.3",
"yargs": "^12.0.2"
},
"devDependencies": {
"jest": "^23.6.0",
"jest-puppeteer-performance": "^1.1.2",
"lighthouse": "^4.0.0-alpha.2-3.2.1",
"puppeteer-network-stats": "^0.3.0"
}
}