-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
72 lines (72 loc) · 1.98 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wiremock-captain",
"version": "3.5.0",
"description": "A better way to use the WireMock simulator to test your HTTP APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/HBOCodeLabs/wiremock-captain.git"
},
"license": "MIT",
"keywords": [
"api",
"captain",
"integration",
"jest",
"test",
"testing",
"typescript",
"wiremock"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && eslint .",
"clean": "rimraf coverage dist tmp .buildcache",
"test": "JEST_JUNIT_OUTPUT_NAME=unit-test.xml jest ./test/unit",
"integration-test": "JEST_JUNIT_OUTPUT_NAME=integration-test.xml jest ./test/integration/ --runInBand",
"coverage": "npm run test -- --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"ncu:check": "ncu",
"ncu:make": "ncu -u",
"precommit": "pretty-quick --staged",
"prettier": "prettier --write --loglevel silent ."
},
"precommit": [
"precommit"
],
"engines": {
"node": ">=20.17.0",
"npm": ">=10.8.2"
},
"dependencies": {
"axios": "1.7.7"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/jest": "29.5.13",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"express": "4.21.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"npm-check-updates": "17.1.10",
"pre-commit": "1.2.2",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.6.3"
}
}