-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "@jasonsoft/nestjs-redis",
"version": "1.0.2",
"description": "Redis module for Nest framework (node.js)",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonsoft/nestjs-redis.git"
},
"keywords": [
"@jasonsoft/nestjs-redis",
"jasonsoft",
"nestjs-redis",
"nestjs",
"redis",
"ioredis"
],
"author": "jason song",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonsoft/nestjs-redis/issues"
},
"homepage": "https://github.com/jasonsoft/nestjs-redis#readme",
"devDependencies": {
"@nestjs/common": "10.0.5",
"@types/node": "20.4.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"ioredis": "5.3.2",
"prettier": "3.0.0",
"rimraf": "5.0.1",
"typescript": "5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"ioredis": "^4.0.0 || ^5.0.0"
}
}