-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 855 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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
{
"name": "automated-api-testing",
"version": "1.0.0",
"description": "Automated API testing suite for Node.js",
"main": "index.js",
"scripts": {
"test": "vitest",
"test:integration": "vitest run tests/suites/integration",
"test:e2e": "vitest run tests/suites/e2e",
"test:regression": "vitest run tests/suites/regression",
"test:api": "vitest -c tests/vitest.config.ts",
"test:api:e2e": "API_ENV=e2e vitest -c tests/vitest.config.ts tests/suites/e2e",
"test:api:integration": "vitest -c tests/vitest.config.ts tests/suites/integration"
},
"keywords": [
"testing",
"api",
"vitest"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.0",
"axios": "^1.6.0",
"nock": "^14.0.10",
"typescript": "^5.3.0",
"vitest": "^1.0.0",
"zod": "^3.22.0"
}
}