-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
37
38
39
40
41
{
"name": "cypress-cucumber-boilerplate",
"version": "0.0.1",
"description": "A boilerplate for cypress with cucumber style",
"main": "index.js",
"scripts": {
"start:web-app": "cd ./demo-webapp && npm run start",
"test:open": "cypress open",
"test:run": "cypress run",
"test:mocha:merge-report": "mochawesome-merge --reportDir reports/mocha > reports/mocha/summary.json",
"test:mocha:gen-html-report": "marge reports/mocha/summary.json -o reports/mocha",
"test:mocha:clean": "rm -rf reports/mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"@cypress/webpack-preprocessor": "^4.1.0",
"bluebird": "^3.7.2",
"chalk": "^2.4.2",
"cypress": "^3.4.1",
"cypress-cucumber-preprocessor": "^1.15.1",
"cypress-testrail-accumulative-reporter": "^1.1.4",
"knex": "^0.20.2",
"mocha": "5.2.0",
"mocha-junit-reporters": "1.23.0",
"mochawesome": "^4.1.0",
"mochawesome-merge": "1.0.7",
"mochawesome-report-generator": "^4.0.1",
"mysql2": "^2.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"webpack": "^4.16.0"
},
"devDependencies": {
"eslint": "^6.8.0"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}