-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·101 lines (101 loc) · 2.5 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
{
"name": "@jasonsoft/nestjs-common",
"version": "1.3.4",
"description": "Nestjs common extension for Nest framework (node.js)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.build.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": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonsoft/nestjs-common.git"
},
"keywords": [
"@jasonsoft/nestjs-common",
"jasonsoft",
"nestjs-common",
"nestjs",
"common",
"typeorm",
"pagination",
"jwt",
"authorization",
"authentication"
],
"author": "Jason Song (成长的小猪)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonsoft/nestjs-common/issues"
},
"homepage": "https://github.com/jasonsoft/nestjs-common#readme",
"devDependencies": {
"@nestjs/common": "10.0.5",
"@types/bcrypt": "5.0.0",
"@types/jest": "^29.5.3",
"@types/js-yaml": "4.0.5",
"@types/jsonwebtoken": "9.0.2",
"@types/node": "20.4.1",
"@types/uuid": "9.0.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^29.6.1",
"prettier": "3.0.0",
"rimraf": "5.0.1",
"rxjs": "7.8.1",
"ts-jest": "^29.1.1",
"typeorm": "0.3.17",
"typescript": "5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"class-transformer": ">=0.2.3",
"class-validator": ">=0.10.0",
"rxjs": ">=6.0.0",
"typeorm": "^0.2.7 || ^0.3.0",
"uuid": "^8.0.0 || ^9.0.0"
},
"dependencies": {
"bcrypt": "5.1.0",
"js-yaml": "4.1.0",
"jsonwebtoken": "9.0.1"
},
"peerDependenciesMeta": {
"class-validator": {
"optional": true
},
"class-transformer": {
"optional": true
}
},
"engines": {
"node": ">=12"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}