generated from Webeleon/typecript-npm-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "@webeleon/nestjs-redis",
"version": "0.1.1",
"description": "A redis client for NestJS",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"patch": "npm run build && npm version patch && npm publish",
"format": "prettier --write 'src/**/*.ts'",
"build": "tsc",
"generate-doc": "typedoc",
"prepare": "husky install",
"release": "standard-version",
"doc:generate": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/nestjs-redis"
},
"bugs": {
"url": "https://github.com/Webeleon/nestjs-redis/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "[email protected]"
}
],
"keywords": [
"webeleon",
"npm",
"typescript",
"NestJS",
"redis"
],
"author": "Julien Prugne<[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/jest": "29.5.14",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.5.3",
"standard-version": "9.5.0",
"ts-jest": "29.2.6",
"ts-node": "10.9.2",
"typedoc": "0.26.11",
"typescript": "4.9.5"
},
"dependencies": {
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"redis": "4.7.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2"
},
"lint-staged": {
"*.{ts}": "prettier --write"
}
}