-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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
45
{
"name": "integration-tests-jest",
"version": "1.0.0",
"description": "API testing with a simple integration between JestJS and PactumJS.",
"main": "index.js",
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"mkdirp": "^3.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"pactum": "^3.7.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.0",
"@faker-js/faker": "^9.0.3",
"http-status-codes": "^2.2.0"
},
"scripts": {
"clean": "rimraf ./output && mkdirp ./output",
"format": "prettier --write \"**/**.[jt]s?(x)\"",
"verify": "prettier --check \"**/**.[jt]s?(x)\"",
"eslint": "eslint \"**/**.[jt]s?(x)\" -o output/eslint.html -f html",
"scenario": "jest aula_pratica.spec.ts --config ./jest.config.js",
"test": "jest --config ./jest.config.js",
"ci": "npm run clean && npm run format && npm run verify && npm run eslint && npm run test"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/ugioni/integration-tests-jest.git"
},
"author": "leandro.ugioni",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/ugioni/integration-tests-jest/issues"
},
"homepage": "/~https://github.com/ugioni/integration-tests-jest#readme"
}