redis-module
Version:
75 lines • 1.86 kB
JSON
{
"name": "redis-module",
"version": "1.0.4",
"description": "",
"lib": "dist/index.js",
"main": "dist/index.js",
"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"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lauweal/nest-redis.git"
},
"peerDependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"ioredis": "^4.0.0"
},
"devDependencies": {
"@nestjs/common": "7.6.18",
"@nestjs/core": "7.6.18",
"@nestjs/testing": "7.6.18",
"@types/ioredis": "4.28.2",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"husky": "7.0.4",
"ioredis": "4.28.2",
"jest": "27.2.5",
"lint-staged": "11.2.0",
"prettier": "2.3.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"standard-version": "9.3.1",
"ts-jest": "27.0.5",
"ts-node": "10.2.0",
"typescript": "4.4.3"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lauweal/nest-redis/issues"
},
"keywords": [
"nest",
"nestjs",
"nest-modules",
"nestjs-modules",
"redis",
"ioredis"
],
"homepage": "https://github.com/Lauweal/nest-redis#readme",
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}