-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "@myrotvorets/express-microservice-middlewares",
"version": "3.1.2",
"description": "Middlewares internally used by our microservices",
"exports": "./dist/lib/index.mjs",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build",
"pretest": "npm run lint",
"test": "mocha test",
"test:coverage": "c8 mocha test"
},
"files": [
"dist/lib/**/*.d.mts",
"dist/lib/**/*.mjs",
"dist/lib/**/*.mjs.map"
],
"typings": "./dist/lib/index.d.mts",
"keywords": [],
"author": "Myrotvorets <[email protected]> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.1",
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint-formatter-gha": "^1.5.2",
"eslint-plugin-mocha": "^10.5.0",
"express": "^4.21.2",
"express-openapi-validator": "^5.3.9",
"mocha": "^11.0.1",
"mocha-multi": "^1.1.7",
"mocha-reporter-gha": "^1.1.1",
"mocha-reporter-sonarqube": "^2.1.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"express-openapi-validator": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/express-microservice-middlewares.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/express-microservice-middlewares/issues"
},
"homepage": "https://github.com/myrotvorets/express-microservice-middlewares#readme"
}