-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
96 lines (96 loc) · 2.78 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "openapi-mock-express-middleware",
"version": "4.3.2",
"description": "Generates express mock-servers from OpenAPI specs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "yarn build -w",
"build": "yarn build:ts",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"watch:node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"yarn watch:ts\" \"yarn watch:node\"",
"lint": "eslint --ext=ts .",
"pretest": "yarn lint",
"test": "jest --forceExit --collectCoverageFrom=\"src/**/*.ts\" --coverage --verbose",
"test:watch": "jest --forceExit --verbose --watchAll",
"security": "yarn audit",
"release": "standard-version",
"commit": "git-cz",
"prepare": "husky || true"
},
"engines": {
"node": ">= 10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleksandryackovlev/openapi-mock-express-middleware.git"
},
"keywords": [
"codegen",
"openapi",
"swagger",
"typescript",
"mock",
"server",
"express"
],
"author": "Aleksandr Yackovlev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aleksandryackovlev/openapi-mock-express-middleware/issues"
},
"homepage": "https://github.com/aleksandryackovlev/openapi-mock-express-middleware#readme",
"files": [
"dist/",
"lib/",
"index.js"
],
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.3",
"@types/express": "^4.17.13",
"ajv": "^8.17.1",
"chokidar": "^4.0.1",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"json-schema-faker": "0.5.8",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"openapi-types": "^12.1.3",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/method-override": "0.0.35",
"@types/node": "^22.7.4",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"commitizen": "^4.3.1",
"concurrently": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"json-schema-faker-types": "^0.1.6",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"standard-version": "^9.3.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"typescript": "^5.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}