-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "@nodeflip/nest-env-config",
"version": "1.0.3",
"description": "An environment configuration module for NestJS that allows for easy configuration using decorators.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@nestjs/common": "^7.6.18",
"@nestjs/config": "^0.6.3",
"@nestjs/core": "^7.6.18",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/testing": "^7.6.18",
"@types/jest": "^29.5.12",
"@types/node": "^14.14.31",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.1.5"
},
"keywords": [
"nestjs-config",
"nestjs-env-config",
"nestjs-config-env",
"nestjs-common",
"nest-config",
"nest-env-config",
"nest-common",
"nestjs",
"nest",
"typescript",
"env",
"env variables",
"environement",
"environement variables",
"dotenv",
"module",
"config",
"nestjs config module",
"dynamic",
"decorator"
],
"author": "Ashish Kumar",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"private": false,
"repository": "https://github.com/nodeflip/nest-env-config",
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/nodeflip/nest-env-config#readme",
"bugs": {
"url": "https://github.com/nodeflip/nest-env-config/issues"
}
}