-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.76 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
42
43
44
{
"name": "pet-api-testing-03",
"version": "1.0.0",
"description": "To make it easy for you to get started with GitLab, here's a list of recommended next steps.",
"main": "index.js",
"scripts": {
"clean": "rimraf ./allure-report ./allure-results & rimraf ./output/junit-report*.xml",
"junit-api-report": "node ./scripts/merge-api-reports.js & rimraf ./output/junit-report*.xml",
"allure-report": "allure generate ./allure-results --clean -o allure-report && allure open -h localhost -p 5555 allure-report",
"api:tests": "npm run clean && mocha 'tests/api/specs/**/*_api-test.ts' & npm run junit-api-report",
"api:tests:dev": "npm run clean && mocha --api.configName dev 'tests/api/specs/**/*_api-test.ts' & npm run junit-api-report",
"api:tests:ppr": "npm run clean && mocha --api.configName ppr 'tests/api/specs/**/*_api-test.ts' & npm run junit-api-report"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/zoriana_chyzhovska/pet-api-testing-03.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/zoriana_chyzhovska/pet-api-testing-03/issues"
},
"homepage": "https://gitlab.com/zoriana_chyzhovska/pet-api-testing-03#readme",
"dependencies": {
"@types/got": "^9.6.12",
"@types/mocha": "^10.0.1",
"allure-commandline": "^2.21.0",
"allure-mocha": "^2.0.0",
"chai": "^4.3.7",
"chai-json-schema": "^1.5.1",
"commander": "^10.0.0",
"got": "^11.8.2",
"junit-report-merger": "^5.0.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^20.4.8"
}
}