@itgorillaz/configify 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +40 -40
package/package.json
CHANGED
|
@@ -1,41 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@itgorillaz/configify",
|
|
3
|
-
"version": "4.0.1",
|
|
4
|
-
"description": "NestJS Config on Steroids",
|
|
5
2
|
"author": "tommelo",
|
|
6
|
-
"private": false,
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/it-gorillaz/configify.git"
|
|
11
|
-
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
"nestjs",
|
|
14
|
-
"config",
|
|
15
|
-
"yml",
|
|
16
|
-
".env"
|
|
17
|
-
],
|
|
18
3
|
"bugs": {
|
|
19
4
|
"url": "https://github.com/it-gorillaz/configify/issues"
|
|
20
5
|
},
|
|
21
|
-
"homepage": "https://github.com/it-gorillaz/configify#readme",
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "nest build",
|
|
24
|
-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
25
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
26
|
-
"test": "jest --config ./test/jest.config.json --coverage --silent=false --verbose --runInBand"
|
|
27
|
-
},
|
|
28
6
|
"dependencies": {
|
|
29
|
-
"dotenv": "^
|
|
7
|
+
"dotenv": "^17.0.0",
|
|
30
8
|
"js-yaml": "^4.1.0"
|
|
31
9
|
},
|
|
32
|
-
"
|
|
33
|
-
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
34
|
-
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
35
|
-
"class-validator": "^0.14.0",
|
|
36
|
-
"reflect-metadata": "^0.1.13 || ^0.2.0",
|
|
37
|
-
"rxjs": "^7.2.0"
|
|
38
|
-
},
|
|
10
|
+
"description": "NestJS Config on Steroids",
|
|
39
11
|
"devDependencies": {
|
|
40
12
|
"@aws-sdk/client-secrets-manager": "^3.454.0",
|
|
41
13
|
"@aws-sdk/client-ssm": "^3.461.0",
|
|
@@ -48,39 +20,67 @@
|
|
|
48
20
|
"@nestjs/testing": "^11.0.5",
|
|
49
21
|
"@types/jest": "30.0.0",
|
|
50
22
|
"@types/js-yaml": "^4.0.9",
|
|
51
|
-
"@types/node": "24.
|
|
23
|
+
"@types/node": "24.10.1",
|
|
52
24
|
"@types/supertest": "^6.0.2",
|
|
53
25
|
"@typescript-eslint/eslint-plugin": "^8.1.0",
|
|
54
26
|
"@typescript-eslint/parser": "^8.1.0",
|
|
55
27
|
"eslint": "^8.0.0 || ^9.0.0",
|
|
56
28
|
"eslint-config-prettier": "^10.0.1",
|
|
57
29
|
"eslint-plugin-prettier": "^5.1.3",
|
|
58
|
-
"jest": "30.0
|
|
30
|
+
"jest": "30.2.0",
|
|
59
31
|
"prettier": "^3.2.5",
|
|
60
32
|
"prettier-plugin-organize-imports": "^4.0.0",
|
|
61
33
|
"source-map-support": "^0.5.20",
|
|
62
34
|
"supertest": "^7.0.0",
|
|
63
|
-
"ts-jest": "29.4.
|
|
35
|
+
"ts-jest": "29.4.6",
|
|
64
36
|
"ts-loader": "^9.2.3",
|
|
65
37
|
"ts-node": "^10.0.0",
|
|
66
38
|
"tsconfig-paths": "4.2.0",
|
|
67
39
|
"typescript": "^5.4.3"
|
|
68
40
|
},
|
|
41
|
+
"homepage": "https://github.com/it-gorillaz/configify#readme",
|
|
69
42
|
"jest": {
|
|
43
|
+
"collectCoverageFrom": [
|
|
44
|
+
"**/*.(t|j)s"
|
|
45
|
+
],
|
|
46
|
+
"coverageDirectory": "../coverage",
|
|
70
47
|
"moduleFileExtensions": [
|
|
71
48
|
"js",
|
|
72
49
|
"json",
|
|
73
50
|
"ts"
|
|
74
51
|
],
|
|
75
52
|
"rootDir": "src",
|
|
53
|
+
"testEnvironment": "node",
|
|
76
54
|
"testRegex": ".*\\.spec\\.ts$",
|
|
77
55
|
"transform": {
|
|
78
56
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"nestjs",
|
|
61
|
+
"config",
|
|
62
|
+
"yml",
|
|
63
|
+
".env"
|
|
64
|
+
],
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"name": "@itgorillaz/configify",
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
69
|
+
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
70
|
+
"class-validator": "^0.14.0",
|
|
71
|
+
"reflect-metadata": "^0.1.13 || ^0.2.0",
|
|
72
|
+
"rxjs": "^7.2.0"
|
|
73
|
+
},
|
|
74
|
+
"private": false,
|
|
75
|
+
"repository": {
|
|
76
|
+
"type": "git",
|
|
77
|
+
"url": "git+https://github.com/it-gorillaz/configify.git"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"build": "nest build",
|
|
81
|
+
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
82
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
83
|
+
"test": "jest --config ./test/jest.config.json --coverage --silent=false --verbose --runInBand"
|
|
84
|
+
},
|
|
85
|
+
"version": "4.0.2"
|
|
86
86
|
}
|