-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.81 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": "@nestjs-modules/ioredis",
"version": "2.0.1",
"description": "Nest - a ioredis module (@ioredis)",
"author": "Nest Modules TM",
"private": false,
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"test": "jest",
"release": "standard-version",
"patch": "npm run release -- --release-as patch",
"minor": "npm run release -- --release-as minor",
"major": "npm run release -- --release-as major",
"deploy": "sh ./publish.sh"
},
"keywords": [
"nest",
"nestjs",
"nest-modules",
"nestjs-modules",
"redis",
"ioredis"
],
"peerDependencies": {
"@nestjs/common": ">=6.7.0",
"@nestjs/core": ">=6.7.0",
"ioredis": ">=5.0.0"
},
"optionalDependencies": {
"@nestjs/terminus": "10.2.0"
},
"devDependencies": {
"@nestjs/common": "10.3.0",
"@nestjs/core": "10.3.0",
"@nestjs/platform-express": "10.3.0",
"@nestjs/terminus": "10.2.0",
"@nestjs/testing": "10.3.0",
"@types/jest": "29.5.11",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"husky": "8.0.3",
"ioredis": "5.3.2",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"prettier": "3.1.1",
"reflect-metadata": "0.2.1",
"rimraf": "5.0.5",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nest-modules/ioredis"
}
}