reslib 2.2.0 → 2.3.1
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/build/auth/errors.d.ts +4 -0
- package/build/auth/errors.js +5 -0
- package/build/auth/index.d.ts +65 -1963
- package/build/auth/index.js +2 -2
- package/build/auth/types.d.ts +42 -0
- package/build/exception/index.js +2 -2
- package/build/inputFormatter/index.js +2 -2
- package/build/resources/ResourcePaginationHelper.js +1 -1
- package/build/resources/index.d.ts +5 -5
- package/build/resources/index.js +3 -3
- package/build/session/index.js +1 -1
- package/build/utils/defaultStr.js +1 -1
- package/build/utils/image.js +1 -1
- package/build/utils/index.js +3 -3
- package/build/utils/interpolate.js +1 -1
- package/build/utils/isEmail.d.ts +1 -1
- package/build/utils/isEmail.js +1 -1
- package/build/utils/isEmpty.d.ts +2 -2
- package/build/utils/isEmpty.js +1 -1
- package/build/utils/isNonNullString.d.ts +2 -2
- package/build/utils/isNumber.d.ts +1 -1
- package/build/utils/isNumber.js +1 -1
- package/build/utils/isPrimitive.d.ts +2 -2
- package/build/utils/isPrimitive.js +1 -1
- package/build/utils/isPromise.d.ts +2 -2
- package/build/utils/isPromise.js +1 -1
- package/build/utils/isRegex.d.ts +2 -2
- package/build/utils/isRegex.js +1 -1
- package/build/utils/isTime.js +1 -1
- package/build/utils/numbers.js +2 -2
- package/build/utils/object.js +1 -1
- package/build/utils/string.js +1 -1
- package/build/utils/stringify.js +1 -1
- package/build/utils/uri/index.d.ts +1 -1
- package/build/validator/index.js +3 -3
- package/build/validator/rules/array.js +2 -2
- package/build/validator/rules/boolean.js +2 -2
- package/build/validator/rules/date.js +2 -2
- package/build/validator/rules/default.js +2 -2
- package/build/validator/rules/enum.js +2 -2
- package/build/validator/rules/file.js +2 -2
- package/build/validator/rules/format.d.ts +1 -1
- package/build/validator/rules/format.js +3 -3
- package/build/validator/rules/ifRule.d.ts +76 -0
- package/build/validator/rules/ifRule.js +5 -0
- package/build/validator/rules/index.d.ts +1 -0
- package/build/validator/rules/index.js +3 -3
- package/build/validator/rules/multiRules.js +2 -2
- package/build/validator/rules/numeric.js +2 -2
- package/build/validator/rules/object.js +2 -2
- package/build/validator/rules/string.js +2 -2
- package/build/validator/rules/target.js +2 -2
- package/build/validator/rules/utils.js +1 -1
- package/build/validator/rulesMarkers.d.ts +1 -0
- package/build/validator/rulesMarkers.js +1 -1
- package/build/validator/types.d.ts +399 -48
- package/build/validator/validator.d.ts +376 -5
- package/build/validator/validator.js +2 -2
- package/package.json +248 -253
package/package.json
CHANGED
|
@@ -1,253 +1,248 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "reslib",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "A lightweight, production-ready TypeScript library for decorator-based resource management and application utilities. ResLib provides a modular framework for building scalable applications with features like authentication, internationalization, validation, session management, and observable patterns. Designed for flexibility, it works seamlessly across web, Node.js, React Native (including Expo), and server-side frameworks like NestJS, offering type safety, extensibility, and performance optimizations without platform-specific dependencies.",
|
|
5
|
-
"exports": {
|
|
6
|
-
"./auth": {
|
|
7
|
-
"types": "./build/auth/index.d.ts",
|
|
8
|
-
"import": "./lib/esm/auth.mjs",
|
|
9
|
-
"require": "./lib/cjs/auth.js"
|
|
10
|
-
},
|
|
11
|
-
"./countries": {
|
|
12
|
-
"types": "./build/countries/index.d.ts",
|
|
13
|
-
"import": "./lib/esm/countries.mjs",
|
|
14
|
-
"require": "./lib/cjs/countries.js"
|
|
15
|
-
},
|
|
16
|
-
"./currency": {
|
|
17
|
-
"types": "./build/currency/index.d.ts",
|
|
18
|
-
"import": "./lib/esm/currency.mjs",
|
|
19
|
-
"require": "./lib/cjs/currency.js"
|
|
20
|
-
},
|
|
21
|
-
"./i18n": {
|
|
22
|
-
"types": "./build/i18n/index.d.ts",
|
|
23
|
-
"import": "./lib/esm/i18n.mjs",
|
|
24
|
-
"require": "./lib/cjs/i18n.js"
|
|
25
|
-
},
|
|
26
|
-
"./exception": {
|
|
27
|
-
"types": "./build/exception/index.d.ts",
|
|
28
|
-
"import": "./lib/esm/exception.mjs",
|
|
29
|
-
"require": "./lib/cjs/exception.js"
|
|
30
|
-
},
|
|
31
|
-
"./inputFormatter": {
|
|
32
|
-
"types": "./build/inputFormatter/index.d.ts",
|
|
33
|
-
"import": "./lib/esm/inputFormatter.mjs",
|
|
34
|
-
"require": "./lib/cjs/inputFormatter.js"
|
|
35
|
-
},
|
|
36
|
-
"./logger": {
|
|
37
|
-
"types": "./build/logger/index.d.ts",
|
|
38
|
-
"import": "./lib/esm/logger.mjs",
|
|
39
|
-
"require": "./lib/cjs/logger.js"
|
|
40
|
-
},
|
|
41
|
-
"./observable": {
|
|
42
|
-
"types": "./build/observable/index.d.ts",
|
|
43
|
-
"import": "./lib/esm/observable.mjs",
|
|
44
|
-
"require": "./lib/cjs/observable.js"
|
|
45
|
-
},
|
|
46
|
-
"./platform": {
|
|
47
|
-
"types": "./build/platform/index.d.ts",
|
|
48
|
-
"import": "./lib/esm/platform.mjs",
|
|
49
|
-
"require": "./lib/cjs/platform.js"
|
|
50
|
-
},
|
|
51
|
-
"./resources": {
|
|
52
|
-
"types": "./build/resources/index.d.ts",
|
|
53
|
-
"import": "./lib/esm/resources.mjs",
|
|
54
|
-
"require": "./lib/cjs/resources.js"
|
|
55
|
-
},
|
|
56
|
-
"./session": {
|
|
57
|
-
"types": "./build/session/index.d.ts",
|
|
58
|
-
"import": "./lib/esm/session.mjs",
|
|
59
|
-
"require": "./lib/cjs/session.js"
|
|
60
|
-
},
|
|
61
|
-
"./utils": {
|
|
62
|
-
"types": "./build/utils/index.d.ts",
|
|
63
|
-
"import": "./lib/esm/utils.mjs",
|
|
64
|
-
"require": "./lib/cjs/utils.js"
|
|
65
|
-
},
|
|
66
|
-
"./types": {
|
|
67
|
-
"types": "./build/types/index.d.ts",
|
|
68
|
-
"import": "./lib/esm/types.mjs",
|
|
69
|
-
"require": "./lib/cjs/types.js"
|
|
70
|
-
},
|
|
71
|
-
"./validator": {
|
|
72
|
-
"types": "./build/validator/index.d.ts",
|
|
73
|
-
"import": "./lib/esm/validator.mjs",
|
|
74
|
-
"require": "./lib/cjs/validator.js"
|
|
75
|
-
},
|
|
76
|
-
"./build/*": {
|
|
77
|
-
"types": "./build/*",
|
|
78
|
-
"import": "./build/*",
|
|
79
|
-
"require": "./build/*"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"typesVersions": {
|
|
83
|
-
"*": {
|
|
84
|
-
"auth": [
|
|
85
|
-
"./build/auth/index.d.ts"
|
|
86
|
-
],
|
|
87
|
-
"countries": [
|
|
88
|
-
"./build/countries/index.d.ts"
|
|
89
|
-
],
|
|
90
|
-
"currency": [
|
|
91
|
-
"./build/currency/index.d.ts"
|
|
92
|
-
],
|
|
93
|
-
"i18n": [
|
|
94
|
-
"./build/i18n/index.d.ts"
|
|
95
|
-
],
|
|
96
|
-
"inputFormatter": [
|
|
97
|
-
"./build/inputFormatter/index.d.ts"
|
|
98
|
-
],
|
|
99
|
-
"logger": [
|
|
100
|
-
"./build/logger/index.d.ts"
|
|
101
|
-
],
|
|
102
|
-
"observable": [
|
|
103
|
-
"./build/observable/index.d.ts"
|
|
104
|
-
],
|
|
105
|
-
"platform": [
|
|
106
|
-
"./build/platform/index.d.ts"
|
|
107
|
-
],
|
|
108
|
-
"resources": [
|
|
109
|
-
"./build/resources/index.d.ts"
|
|
110
|
-
],
|
|
111
|
-
"session": [
|
|
112
|
-
"./build/session/index.d.ts"
|
|
113
|
-
],
|
|
114
|
-
"utils": [
|
|
115
|
-
"./build/utils/index.d.ts"
|
|
116
|
-
],
|
|
117
|
-
"types": [
|
|
118
|
-
"./build/types/index.d.ts"
|
|
119
|
-
],
|
|
120
|
-
"validator": [
|
|
121
|
-
"./build/validator/index.d.ts"
|
|
122
|
-
]
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
"files": [
|
|
126
|
-
"build",
|
|
127
|
-
"lib",
|
|
128
|
-
"docs",
|
|
129
|
-
"readme.md",
|
|
130
|
-
"package.json"
|
|
131
|
-
],
|
|
132
|
-
"scripts": {
|
|
133
|
-
"clear-npx-cache": "npx clear-npx-cache",
|
|
134
|
-
"pretest": "npm run build-test",
|
|
135
|
-
"prebuild": "npm run clean && npm run lint",
|
|
136
|
-
"build": "tsup --config tsup.config.build.ts",
|
|
137
|
-
"build-dts": "tsc -p tsconfig.dts.json && npx tsc-alias -p tsconfig.dts.json",
|
|
138
|
-
"build-test": "tsup --config tsup.config.test.ts",
|
|
139
|
-
"clean": "npx rimraf build dist",
|
|
140
|
-
"dev": "tsup --config tsup.config.build.ts --watch",
|
|
141
|
-
"test": "npx jest",
|
|
142
|
-
"test:watch": "npx jest --watch",
|
|
143
|
-
"test:coverage": "npx jest --coverage",
|
|
144
|
-
"start": "node build/test/index",
|
|
145
|
-
"prepublishOnly": "npm run build",
|
|
146
|
-
"build-doc": "npx typedoc",
|
|
147
|
-
"check": "npm pack --dry-run",
|
|
148
|
-
"publish:canary": "npm publish --tag canary",
|
|
149
|
-
"publish:beta": "npm publish --tag beta",
|
|
150
|
-
"publish:latest": "npm publish",
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"changeset": "changeset",
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"@
|
|
169
|
-
"@types/
|
|
170
|
-
"@
|
|
171
|
-
"@
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"jest": "^
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
"
|
|
196
|
-
"reflect-metadata": "^0.2.2"
|
|
197
|
-
|
|
198
|
-
},
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
"
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
"url": "https://github.com/boris-fouomene/reslib/issues"
|
|
250
|
-
},
|
|
251
|
-
"homepage": "https://github.com/boris-fouomene/reslib#readme",
|
|
252
|
-
"npmClient": "npm"
|
|
253
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "reslib",
|
|
3
|
+
"version": "2.3.1",
|
|
4
|
+
"description": "A lightweight, production-ready TypeScript library for decorator-based resource management and application utilities. ResLib provides a modular framework for building scalable applications with features like authentication, internationalization, validation, session management, and observable patterns. Designed for flexibility, it works seamlessly across web, Node.js, React Native (including Expo), and server-side frameworks like NestJS, offering type safety, extensibility, and performance optimizations without platform-specific dependencies.",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./auth": {
|
|
7
|
+
"types": "./build/auth/index.d.ts",
|
|
8
|
+
"import": "./lib/esm/auth.mjs",
|
|
9
|
+
"require": "./lib/cjs/auth.js"
|
|
10
|
+
},
|
|
11
|
+
"./countries": {
|
|
12
|
+
"types": "./build/countries/index.d.ts",
|
|
13
|
+
"import": "./lib/esm/countries.mjs",
|
|
14
|
+
"require": "./lib/cjs/countries.js"
|
|
15
|
+
},
|
|
16
|
+
"./currency": {
|
|
17
|
+
"types": "./build/currency/index.d.ts",
|
|
18
|
+
"import": "./lib/esm/currency.mjs",
|
|
19
|
+
"require": "./lib/cjs/currency.js"
|
|
20
|
+
},
|
|
21
|
+
"./i18n": {
|
|
22
|
+
"types": "./build/i18n/index.d.ts",
|
|
23
|
+
"import": "./lib/esm/i18n.mjs",
|
|
24
|
+
"require": "./lib/cjs/i18n.js"
|
|
25
|
+
},
|
|
26
|
+
"./exception": {
|
|
27
|
+
"types": "./build/exception/index.d.ts",
|
|
28
|
+
"import": "./lib/esm/exception.mjs",
|
|
29
|
+
"require": "./lib/cjs/exception.js"
|
|
30
|
+
},
|
|
31
|
+
"./inputFormatter": {
|
|
32
|
+
"types": "./build/inputFormatter/index.d.ts",
|
|
33
|
+
"import": "./lib/esm/inputFormatter.mjs",
|
|
34
|
+
"require": "./lib/cjs/inputFormatter.js"
|
|
35
|
+
},
|
|
36
|
+
"./logger": {
|
|
37
|
+
"types": "./build/logger/index.d.ts",
|
|
38
|
+
"import": "./lib/esm/logger.mjs",
|
|
39
|
+
"require": "./lib/cjs/logger.js"
|
|
40
|
+
},
|
|
41
|
+
"./observable": {
|
|
42
|
+
"types": "./build/observable/index.d.ts",
|
|
43
|
+
"import": "./lib/esm/observable.mjs",
|
|
44
|
+
"require": "./lib/cjs/observable.js"
|
|
45
|
+
},
|
|
46
|
+
"./platform": {
|
|
47
|
+
"types": "./build/platform/index.d.ts",
|
|
48
|
+
"import": "./lib/esm/platform.mjs",
|
|
49
|
+
"require": "./lib/cjs/platform.js"
|
|
50
|
+
},
|
|
51
|
+
"./resources": {
|
|
52
|
+
"types": "./build/resources/index.d.ts",
|
|
53
|
+
"import": "./lib/esm/resources.mjs",
|
|
54
|
+
"require": "./lib/cjs/resources.js"
|
|
55
|
+
},
|
|
56
|
+
"./session": {
|
|
57
|
+
"types": "./build/session/index.d.ts",
|
|
58
|
+
"import": "./lib/esm/session.mjs",
|
|
59
|
+
"require": "./lib/cjs/session.js"
|
|
60
|
+
},
|
|
61
|
+
"./utils": {
|
|
62
|
+
"types": "./build/utils/index.d.ts",
|
|
63
|
+
"import": "./lib/esm/utils.mjs",
|
|
64
|
+
"require": "./lib/cjs/utils.js"
|
|
65
|
+
},
|
|
66
|
+
"./types": {
|
|
67
|
+
"types": "./build/types/index.d.ts",
|
|
68
|
+
"import": "./lib/esm/types.mjs",
|
|
69
|
+
"require": "./lib/cjs/types.js"
|
|
70
|
+
},
|
|
71
|
+
"./validator": {
|
|
72
|
+
"types": "./build/validator/index.d.ts",
|
|
73
|
+
"import": "./lib/esm/validator.mjs",
|
|
74
|
+
"require": "./lib/cjs/validator.js"
|
|
75
|
+
},
|
|
76
|
+
"./build/*": {
|
|
77
|
+
"types": "./build/*",
|
|
78
|
+
"import": "./build/*",
|
|
79
|
+
"require": "./build/*"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"typesVersions": {
|
|
83
|
+
"*": {
|
|
84
|
+
"auth": [
|
|
85
|
+
"./build/auth/index.d.ts"
|
|
86
|
+
],
|
|
87
|
+
"countries": [
|
|
88
|
+
"./build/countries/index.d.ts"
|
|
89
|
+
],
|
|
90
|
+
"currency": [
|
|
91
|
+
"./build/currency/index.d.ts"
|
|
92
|
+
],
|
|
93
|
+
"i18n": [
|
|
94
|
+
"./build/i18n/index.d.ts"
|
|
95
|
+
],
|
|
96
|
+
"inputFormatter": [
|
|
97
|
+
"./build/inputFormatter/index.d.ts"
|
|
98
|
+
],
|
|
99
|
+
"logger": [
|
|
100
|
+
"./build/logger/index.d.ts"
|
|
101
|
+
],
|
|
102
|
+
"observable": [
|
|
103
|
+
"./build/observable/index.d.ts"
|
|
104
|
+
],
|
|
105
|
+
"platform": [
|
|
106
|
+
"./build/platform/index.d.ts"
|
|
107
|
+
],
|
|
108
|
+
"resources": [
|
|
109
|
+
"./build/resources/index.d.ts"
|
|
110
|
+
],
|
|
111
|
+
"session": [
|
|
112
|
+
"./build/session/index.d.ts"
|
|
113
|
+
],
|
|
114
|
+
"utils": [
|
|
115
|
+
"./build/utils/index.d.ts"
|
|
116
|
+
],
|
|
117
|
+
"types": [
|
|
118
|
+
"./build/types/index.d.ts"
|
|
119
|
+
],
|
|
120
|
+
"validator": [
|
|
121
|
+
"./build/validator/index.d.ts"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"files": [
|
|
126
|
+
"build",
|
|
127
|
+
"lib",
|
|
128
|
+
"docs",
|
|
129
|
+
"readme.md",
|
|
130
|
+
"package.json"
|
|
131
|
+
],
|
|
132
|
+
"scripts": {
|
|
133
|
+
"clear-npx-cache": "npx clear-npx-cache",
|
|
134
|
+
"pretest": "npm run build-test",
|
|
135
|
+
"prebuild": "npm run clean && npm run lint",
|
|
136
|
+
"build": "tsup --config tsup.config.build.ts",
|
|
137
|
+
"build-dts": "tsc -p tsconfig.dts.json && npx tsc-alias -p tsconfig.dts.json",
|
|
138
|
+
"build-test": "tsup --config tsup.config.test.ts",
|
|
139
|
+
"clean": "npx rimraf build dist",
|
|
140
|
+
"dev": "tsup --config tsup.config.build.ts --watch",
|
|
141
|
+
"test": "npx jest",
|
|
142
|
+
"test:watch": "npx jest --watch",
|
|
143
|
+
"test:coverage": "npx jest --coverage",
|
|
144
|
+
"start": "node build/test/index",
|
|
145
|
+
"prepublishOnly": "npm run build",
|
|
146
|
+
"build-doc": "npx typedoc",
|
|
147
|
+
"check": "npm pack --dry-run",
|
|
148
|
+
"publish:canary": "npm publish --tag canary",
|
|
149
|
+
"publish:beta": "npm publish --tag beta",
|
|
150
|
+
"publish:latest": "npm publish",
|
|
151
|
+
"changeset": "changeset",
|
|
152
|
+
"changeset:add": "changeset add",
|
|
153
|
+
"changeset:version": "changeset version",
|
|
154
|
+
"changeset:publish": "changeset publish",
|
|
155
|
+
"check:updates": "npx npm-check-updates",
|
|
156
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
157
|
+
"audit:fix": "npm audit fix",
|
|
158
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
159
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
160
|
+
"format": "prettier --write src/**/*.{ts,tsx}",
|
|
161
|
+
"format:check": "prettier --check src/**/*.{ts,tsx}",
|
|
162
|
+
"prepare": "husky install"
|
|
163
|
+
},
|
|
164
|
+
"devDependencies": {
|
|
165
|
+
"@changesets/cli": "^2.29.8",
|
|
166
|
+
"@types/google-libphonenumber": "^7.4.30",
|
|
167
|
+
"@types/jest": "^30.0.0",
|
|
168
|
+
"@types/node": "^25.0.3",
|
|
169
|
+
"@types/qs": "^6.14.0",
|
|
170
|
+
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
171
|
+
"@typescript-eslint/parser": "^8.51.0",
|
|
172
|
+
"concurrently": "^9.2.1",
|
|
173
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
174
|
+
"eslint": "^9.39.2",
|
|
175
|
+
"eslint-plugin-jest": "^29.12.0",
|
|
176
|
+
"fast-glob": "^3.3.3",
|
|
177
|
+
"husky": "^9.1.7",
|
|
178
|
+
"jest": "^30.2.0",
|
|
179
|
+
"lint-staged": "^16.2.7",
|
|
180
|
+
"prettier": "^3.7.4",
|
|
181
|
+
"rimraf": "^6.1.2",
|
|
182
|
+
"ts-jest": "^29.4.6",
|
|
183
|
+
"ts-patch": "^3.3.0",
|
|
184
|
+
"tsc-alias": "^1.8.16",
|
|
185
|
+
"tsup": "^8.5.1",
|
|
186
|
+
"typedoc": "^0.28.15"
|
|
187
|
+
},
|
|
188
|
+
"dependencies": {
|
|
189
|
+
"moment": "^2.30.1",
|
|
190
|
+
"qs": "^6.14.1",
|
|
191
|
+
"reflect-metadata": "^0.2.2",
|
|
192
|
+
"stable-hash": "^0.0.6"
|
|
193
|
+
},
|
|
194
|
+
"peerDependencies": {
|
|
195
|
+
"google-libphonenumber": "*",
|
|
196
|
+
"reflect-metadata": "^0.2.2"
|
|
197
|
+
},
|
|
198
|
+
"peerDependenciesMeta": {},
|
|
199
|
+
"publishConfig": {
|
|
200
|
+
"access": "public"
|
|
201
|
+
},
|
|
202
|
+
"keywords": [
|
|
203
|
+
"TypeScript",
|
|
204
|
+
"Decorators",
|
|
205
|
+
"Modular",
|
|
206
|
+
"Architecture",
|
|
207
|
+
"Extensible",
|
|
208
|
+
"Library",
|
|
209
|
+
"Custom",
|
|
210
|
+
"FieldMeta",
|
|
211
|
+
"Types",
|
|
212
|
+
"Type",
|
|
213
|
+
"Safety",
|
|
214
|
+
"API",
|
|
215
|
+
"Development",
|
|
216
|
+
"Code",
|
|
217
|
+
"Organization",
|
|
218
|
+
"Application",
|
|
219
|
+
"Scalability",
|
|
220
|
+
"Dynamic",
|
|
221
|
+
"Ecosystem",
|
|
222
|
+
"Clean",
|
|
223
|
+
"Code",
|
|
224
|
+
"Object-Oriented",
|
|
225
|
+
"Programming",
|
|
226
|
+
"Developer-Friendly",
|
|
227
|
+
"Open",
|
|
228
|
+
"Source",
|
|
229
|
+
"Resource Management",
|
|
230
|
+
"i18n",
|
|
231
|
+
"Validation",
|
|
232
|
+
"Authentication",
|
|
233
|
+
"Session Management",
|
|
234
|
+
"Observable",
|
|
235
|
+
"Cross-Platform"
|
|
236
|
+
],
|
|
237
|
+
"author": "Boris Fouomene",
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"repository": {
|
|
240
|
+
"type": "git",
|
|
241
|
+
"url": "https://github.com/boris-fouomene/reslib.git"
|
|
242
|
+
},
|
|
243
|
+
"bugs": {
|
|
244
|
+
"url": "https://github.com/boris-fouomene/reslib/issues"
|
|
245
|
+
},
|
|
246
|
+
"homepage": "https://github.com/boris-fouomene/reslib#readme",
|
|
247
|
+
"npmClient": "npm"
|
|
248
|
+
}
|