forked from trentmwillis/devtools-protocol-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.35 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
{
"name": "devtools-protocol-demos",
"version": "1.0.0",
"description": "Demos of the Chrome DevTools Protocol for various testing/automation techniques",
"scripts": {
"test:intro": "qunit testing-demos/intro.js",
"test:user-flow": "qunit testing-demos/user-flow.js",
"test:accessibility": "qunit testing-demos/accessibility.js",
"test:visual-regression": "qunit testing-demos/visual-regression.js",
"test:memory-leak-by-heap": "qunit testing-demos/memory-leak-by-heap.js",
"test:memory-leak-by-prototype": "qunit testing-demos/memory-leak-by-prototype.js",
"test:code-coverage": "qunit testing-demos/code-coverage.js && nyc report --reporter=html && open ./coverage/index.html",
"test:multi-user": "qunit testing-demos/multi-user.js",
"test:multi-user-full": "qunit testing-demos/multi-user-full.js",
"service:static-site-api": "node service-demos/static-site-api.js",
"service:screenshot-emailer": "node service-demos/screenshot-emailer.js",
"service:playback": "node service-demos/playback.js"
},
"author": "Trent Willis <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"looks-same": "^3.3.0",
"nodemailer": "^4.6.8",
"nyc": "^12.0.2",
"puppeteer": "^1.7.0",
"puppeteer-to-istanbul": "^1.2.2",
"qunit": "^2.6.2"
}
}