-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "jest-supertest-starter",
"version": "1.1.0",
"description": "Starter template/project that can be used to start performing API integration testing using JEST and Supertest (with support to multi environments)",
"main": "index.js",
"repository": "[email protected]:awaragi/jest-supertest-starter.git",
"author": "Pierre Awaragi <[email protected]>",
"license": "MIT",
"keywords": [
"API",
"testing",
"API testing",
"Allure",
"supertest",
"jest",
"json schema",
"data drive"
],
"bugs": {
"url": "https://github.com/awaragi/jest-supertest-starter/issues"
},
"scripts": {
"start": "yarn-or-npm run test:prod",
"test:dev": "TARGET=dev jest",
"test:prod": "TARGET=prod jest",
"lint": "eslint ./src",
"format": "prettier --check ./src/**/* --write"
},
"dependencies": {
"jest": "^29.5.0",
"jest-html-reporters": "^3.1.4",
"jest-json-schema": "^6.1.0",
"superagent-defaults": "^0.1.14",
"supertest": "^6.1.3",
"yarn-or-npm": "^3.0.1"
},
"devDependencies": {
"@types/supertest": "^2.0.11",
"eslint": "^8.41.0",
"eslint-plugin-jest": "^27.2.1",
"prettier": "^2.3.1"
}
}