-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
97 lines (97 loc) · 2.31 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
97
{
"name": "nest-middlewares",
"version": "5.0.2",
"description": "Common, injectable middlewares for NestJS",
"private": true,
"scripts": {
"build": "sh ./scripts/build.sh",
"test": "nyc mocha packages/**/*.spec.ts --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "sh ./scripts/clean.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lerna": "lerna"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wbhob/nest-middlewares.git"
},
"keywords": [
"nest",
"middlewares",
"express",
"node"
],
"author": "Wilson Hobbs",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbhob/nest-middlewares/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/wbhob/nest-middlewares#readme",
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/microservices": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@nestjs/websockets": "^10.0.0",
"@types/chai": "^4.0.5",
"@types/express": "^4.16.0",
"@types/express-serve-static-core": "^4.16.0",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.20",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"import-sort-style-module": "^6.0.0",
"lerna": "^7.4.1",
"lerna-changelog": "^2.2.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"proxyquire": "^1.3.28",
"reflect-metadata": "^0.1.10",
"rxjs": "^7.1.0",
"sinon": "^17.0.0",
"source-map-support": "^0.5.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"nyc": {
"include": [
"packages/**/*.ts"
],
"extension": [
".ts"
],
"exclude": [
"packages/**/*.spec.ts",
"packages/**/*.d.ts",
"template",
"types"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"dependencies": {
"proxyrequire": "^1.0.21"
}
}