-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.55 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
98
99
100
101
102
{
"name": "nestjs-chronik",
"version": "0.1.1",
"description": "NestJS wrapper for chronik client",
"author": "vince8x <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write '**/*.md' '**/*.json' '**/*.ts' .prettierrc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"keywords": [
"nestjs",
"chronik"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/bcProFoundation/nestjs-chronik"
},
"bugs": "https://github.com/bcProFoundation/nestjs-chronik",
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.3.9 || ^10.1.3",
"chronik-client": "~0.26.2"
},
"devDependencies": {
"@commitlint/cli": "19.1.0",
"@commitlint/config-conventional": "19.1.0",
"@nestjs/common": "10.3.3",
"@nestjs/core": "10.3.3",
"@nestjs/platform-fastify": "10.3.3",
"@nestjs/terminus": "10.2.3",
"@nestjs/testing": "10.3.3",
"@types/jest": "29.5.12",
"@types/node": "20.11.27",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-tsdoc": "0.2.17",
"fastify": "4.26.2",
"husky": "9.0.11",
"ioredis": "5.3.2",
"istanbul-badges-readme": "1.8.5",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"reflect-metadata": "0.2.1",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"ts-jest": "29.1.2",
"tsc-alias": "1.8.8",
"typescript": "5.4.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1"
}
},
"engines": {
"node": ">=16.6.0",
"pnpm": ">=7"
}
}