-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.21 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
{
"name": "@buka/nestjs-config",
"version": "2.1.7",
"description": "An easy to use nestjs config module",
"packageManager": "pnpm@9.10.0",
"main": "dist/umd/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"exports": {
"require": "./dist/umd/src/index.js",
"import": "./dist/esm/src/index.js"
},
"scripts": {
"build": "npm run clean && ./build/build.sh",
"clean": "rm -rf ./dist/*",
"dev": "npm run clean && ./build/watch.sh",
"prepare": "ts-patch install -s && is-ci || husky",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"test": "jest"
},
"keywords": [
"nestjs",
"nest",
"module",
"config",
"configuration",
"nconf",
"dotenv",
"env",
"environment"
],
"author": "Val.istar.Guo <val.istar.guo@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/buka-lnc/npm.nestjs-config/#readme",
"bugs": {
"url": "https://github.com/buka-lnc/npm.nestjs-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/buka-inc/npm.nestjs-config"
},
"devDependencies": {
"@buka/eslint-config": "^2.1.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@nestjs/common": "^11.0.7",
"@nestjs/testing": "^11.0.7",
"@types/node": "^22.10.0",
"@types/object-path": "^0.11.4",
"@types/ramda": "^0.30.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^9.15.0",
"husky": "^9.0.11",
"is-ci": "^4.1.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"memfs": "^4.14.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.2",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"change-case-all": "^2.1.0",
"dotenv": "^16.4.5",
"object-path": "^0.11.8",
"ramda": "^0.30.1",
"type-fest": "^4.21.0"
},
"peerDependencies": {
"@nestjs/common": "^10 || ^11",
"class-transformer": "*",
"class-validator": "*"
}
}