forked from DevExpress/testcafe-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "testcafe-examples",
"version": "0.0.1",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
},
"description": "This repository contains sample test files that help you learn how to use TestCafe.",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.19",
"nanoid": "^3.1.12",
"testcafe": "^1.8.8"
},
"scripts": {
"examples": "testcafe chrome,firefox examples -a \"node server/index.js\"",
"mock-camera-microphone-access": " testcafe --hostname localhost \"chrome --use-fake-ui-for-media-stream --use-fake-device-for-media-stream\" detached-examples/mock-camera-microphone-access/mock-camera-microphone-access.js",
"test": "npm run examples && npm run mock-camera-microphone-access"
},
"devDependencies": {
"mockdate": "^2.0.5",
"multiparty": "^4.2.2"
}
}