-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "petstore-api-testing-framework",
"version": "1.0.0",
"description": "Framework for testing Petstore API",
"main": "index.js",
"scripts": {
"test": "jest",
"allure": "allure generate --clean && allure open",
"clean": "rimraf allure-results && rimraf allure-report && rimraf test-results && rimraf playwright-report && rimraf junit-results",
"allure-report": "allure generate ./allure-results --clean",
"open-report": "npm run allure-report && allure open ./allure-report"
},
"dependencies": {
"@faker-js/faker": "^9.0.3",
"axios": "^0.24.0",
"form-data": "^4.0.1",
"jest-allure": "^0.1.3",
"jest-junit": "^16.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/form-data": "^2.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^22.7.7",
"@types/winston": "^2.4.4",
"allure-commandline": "^2.30.0",
"allure-jest": "^3.0.5",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
}
}