-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 1.88 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
{
"name": "nest-nacos",
"version": "0.6.0",
"keywords": [
"nestjs",
"nacos"
],
"description": "NestJs Nacos模块",
"author": "zcw <[email protected]>",
"homepage": "https://github.com/zcws/nest-nacos",
"main": "lib/index.js",
"license": "ISC",
"files": [
"lib",
"types"
],
"types": "types",
"repository": {
"type": "git",
"url": "https://github.com/zcws/nest-nacos.git"
},
"scripts": {
"build": "rimraf lib types & tsc -b",
"lint": "eslint . --ext .ts",
"test": "mocha test/**/*.spec.ts",
"sv": "standard-version -r",
"prepublish": "pnpm lint & pnpm build"
},
"dependencies": {
"debug": "^4.3.4",
"nacos": "^2.5.1",
"os": "^0.1.2",
"yaml": "^2.3.0"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^9.4.2",
"@nestjs/core": "^9.4.2",
"@nestjs/testing": "^9.4.2",
"@types/chai": "^4.3.5",
"@types/debug": "^4.1.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"mocha": "^10.2.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"standard-version": {
"header": "# Changelog",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "ref",
"section": "Refactor"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "other",
"section": "Other"
}
]
}
}