-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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
{
"name": "api-testing-framework-typescript",
"version": "1.0.0",
"description": "An example project demonstrating effective test automation practices using Jest, SuperTest, and TypeScript, tailored for the Rick and Morty API.",
"repository": {
"type": "git",
"url": "git+https://github.com/monikakonieczna/api-testing-framework-typescript.git"
},
"license": "MIT",
"scripts": {
"test:all": "jest",
"test:single_character": "jest --group=single_character",
"test:all_characters": "jest --group=all_characters",
"test:multiple_characters": "jest --group=multiple_characters",
"test:filter_characters": "jest --group=filter_characters",
"test:sanity": "jest --group=sanity_tests"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jest-junit": "^16.0.0",
"jest-runner-groups": "^2.2.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/chance": "^1.1.6",
"chance": "^1.1.12",
"dotenv": "^16.4.5"
}
}