-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.7 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.7 KB
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
102
103
{
"name": "@codemask-labs/node-config",
"author": "Codemask <contact@codemask.com> (https://github.com/codemask-labs/node-config)",
"repository": "https://github.com/codemask-labs/node-config",
"license": "MIT",
"version": "2.1.0",
"description": "Node Config Module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">= 20.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintIgnore": [
"node_modules/"
],
"scripts": {
"start:dev": "nest start -w",
"build:example": "yarn rimraf dist && nest build",
"test": "yarn jest --config=jest.config.json --pathPattern=lib",
"build:package": "yarn tsc --declaration --project tsconfig.build.json",
"build:replace-tspaths": "yarn tscpaths -p tsconfig.build.json -s ./lib -o ./dist",
"build": "yarn rimraf dist && yarn build:package && yarn build:replace-tspaths",
"lint": "yarn eslint \"lib/**/*.ts\"",
"format": "yarn prettier -w lib && yarn lint --fix",
"format:check": "yarn prettier --check lib",
"update": "yarn upgrade-interactive"
},
"keywords": [
"codemask-labs",
"config-management",
"typescript",
"nodejs",
"class-validator",
"class-transformer",
"dotenv",
"nestjs",
"configuration",
"env-variables",
"type-safe",
"validation",
"decorators",
"dependency-injection",
"nestjs-config",
"environment-variables",
"runtime-validation",
"node-config",
"strongly-typed"
],
"peerDependencies": {
"class-transformer": ">=0.5.1",
"class-validator": ">=0.14.1"
},
"resolutions": {
"cross-spawn": "7.0.5",
"micromatch": "4.0.8",
"braces": "3.0.3"
},
"dependencies": {
"chalk": "4.1.2",
"dotenv": "17.2.3",
"ramda": "0.32.0"
},
"devDependencies": {
"@commitlint/config-conventional": "20.0.0",
"@nestjs/cli": "11.0.10",
"@nestjs/common": "11.1.9",
"@nestjs/core": "11.1.9",
"@nestjs/platform-express": "11.1.9",
"@nestjs/typeorm": "11.0.0",
"@types/jest": "30.0.0",
"@types/node": "24.10.1",
"@types/pg": "8.15.6",
"@types/ramda": "0.31.1",
"class-transformer": "0.5.1",
"class-validator": "0.14.2",
"eslint": "9.39.1",
"eslint-config-codemask": "2.2.1",
"jest": "30.2.0",
"pg": "8.16.3",
"prettier": "3.6.2",
"reflect-metadata": "0.2.2",
"rimraf": "6.1.0",
"ts-jest": "29.4.5",
"tscpaths": "0.0.9",
"typeorm": "0.3.27",
"typescript": "5.9.3"
},
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"@codemask-labs:registry": "https://registry.npmjs.org/",
"access": "public"
}
}