-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "api-testing-cypress",
"version": "1.0.0",
"description": "This is rest api testing with cypress",
"main": "index.js",
"scripts": {
"cypress:open": "./node_modules/.bin/cypress open",
"cypress:run": "./node_modules/.bin/cypress run --spec **/*.cy.js",
"test:chrome": "cypress run --browser chrome",
"report:merge": "mochawesome-merge cypress/reports/json/*.json > index.json",
"report:generate": "marge index.json --reportDir public --assetsDir public/assets --reportPageTitle index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashikkumar23/api-testing-cypress.git"
},
"author": "Ashik Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashikkumar23/api-testing-cypress/issues"
},
"homepage": "https://github.com/ashikkumar23/api-testing-cypress#readme",
"dependencies": {
"cypress": "^14.0.3"
},
"devDependencies": {
"cypress-multi-reporters": "^2.0.5",
"mocha": "^11.1.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^5.0.0",
"mochawesome-report-generator": "^6.2.0"
}
}