-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 814 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 814 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
25
26
27
{
"name": "@requestly/cypress-template",
"version": "0.1.0",
"description": "Template for Cypress automation tests in Requestly integrated browser",
"scripts": {
"test": "npm run test:chrome",
"test:chrome": "cypress run --browser chrome --headed",
"test:edge": "cypress run --browser edge --headed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/requestly/requestly-cypress-template.git"
},
"author": {
"name": "Requestly",
"email": "contact@requestly.io",
"url": "https://requestly.io/"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/requestly/requestly-cypress-template/issues"
},
"homepage": "https://github.com/requestly/requestly-cypress-template#readme",
"devDependencies": {
"cypress": "^10.7.0"
}
}