-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
36 lines (36 loc) · 1.25 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": "cypress-testframework",
"version": "1.0.0",
"description": "",
"repository": "",
"main": "",
"scripts": {
"test": "./node_modules/.bin/cypress run",
"cy:open": "./node_modules/.bin/cypress open",
"cy:run": "./node_modules/.bin/cypress run",
"cy:test:dev": "node runner.js cypress run --env configFile=dev",
"cy:test:qa": "node runner.js cypress run --env TAGS=\"@API\" configFile=qa",
"cy:record:qa": "node runner.js cypress run --env TAGS=\"@API\" configFile=qa --record --key 04cca009-ab36-4310-b1fd-4f09a4a1a75d --tag \"release,v1.10\"",
"cy:record:parallel:qa": "node runner.js cypress run --env TAGS=\"@API\" configFile=qa --record --parallel --key 04cca009-ab36-4310-b1fd-4f09a4a1a75d --tag \"release,v1.10\""
},
"author": "far11ven",
"license": "ISC",
"devDependencies": {
"cypress": "9.2.0",
"cypress-cucumber-preprocessor": "^3.0.0",
"cypress-xpath": "^1.6.0",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"mocha": "^8.1.3",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^6.2.0",
"pg": "^8.7.1"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"dependencies": {
"moment": "^2.29.1"
}
}