utilitas 1989.9.5 → 1989.9.6
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/index.mjs +38 -75
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -1,76 +1,39 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import sentinel from './lib/sentinel.mjs';
|
|
24
|
-
import sentry from '@sentry/node';
|
|
25
|
-
import shell from './lib/shell.mjs';
|
|
26
|
-
import shot from './lib/shot.mjs';
|
|
27
|
-
import sms from './lib/sms.mjs';
|
|
28
|
-
import storage from './lib/storage.mjs';
|
|
29
|
-
import tape from './lib/tape.mjs';
|
|
30
|
-
import telesign from 'telesignsdk';
|
|
31
|
-
import twilio from 'twilio';
|
|
32
|
-
import uoid from './lib/uoid.mjs';
|
|
33
|
-
import utilitas from './lib/utilitas.mjs';
|
|
34
|
-
import winston from 'winston';
|
|
35
|
-
import winstonPapertrail from 'winston-papertrail-mproved';
|
|
1
|
+
// dependencies
|
|
2
|
+
export * as base64url from 'base64url';
|
|
3
|
+
export * as colors from 'colors/safe.js';
|
|
4
|
+
export * as fetch from 'node-fetch';
|
|
5
|
+
export * as fileType from 'file-type';
|
|
6
|
+
export * as geoIp from 'fast-geoip';
|
|
7
|
+
export * as ini from 'ini';
|
|
8
|
+
export * as jwt from 'jsonwebtoken';
|
|
9
|
+
export * as mailgun from 'mailgun-js';
|
|
10
|
+
export * as mailjet from 'node-mailjet';
|
|
11
|
+
export * as math from 'mathjs';
|
|
12
|
+
export * as mysql from 'mysql2/promise';
|
|
13
|
+
export * as ping from 'ping';
|
|
14
|
+
export * as publicIp from 'public-ip';
|
|
15
|
+
export * as qs from 'qs';
|
|
16
|
+
export * as redis from 'ioredis';
|
|
17
|
+
export * as sentry from '@sentry/node';
|
|
18
|
+
export * as telesign from 'telesignsdk';
|
|
19
|
+
export * as twilio from 'twilio';
|
|
20
|
+
export * as uuid from 'uuid';
|
|
21
|
+
export * as winston from 'winston';
|
|
22
|
+
export * as winstonPapertrail from 'winston-papertrail-mproved';
|
|
36
23
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
redis,
|
|
54
|
-
sentry,
|
|
55
|
-
telesign,
|
|
56
|
-
twilio,
|
|
57
|
-
uuid,
|
|
58
|
-
winston,
|
|
59
|
-
winstonPapertrail,
|
|
60
|
-
// features
|
|
61
|
-
cache,
|
|
62
|
-
dbio,
|
|
63
|
-
utilitas as default,
|
|
64
|
-
email,
|
|
65
|
-
encryption,
|
|
66
|
-
event,
|
|
67
|
-
network,
|
|
68
|
-
sentinel,
|
|
69
|
-
shell,
|
|
70
|
-
shot,
|
|
71
|
-
sms,
|
|
72
|
-
storage,
|
|
73
|
-
tape,
|
|
74
|
-
uoid,
|
|
75
|
-
utilitas,
|
|
76
|
-
};
|
|
24
|
+
// features
|
|
25
|
+
export * as cache from './lib/cache.mjs';
|
|
26
|
+
export * as dbio from './lib/dbio.mjs';
|
|
27
|
+
export * as email from './lib/email.mjs';
|
|
28
|
+
export * as encryption from './lib/encryption.mjs';
|
|
29
|
+
export * as event from './lib/event.mjs';
|
|
30
|
+
export * as network from './lib/network.mjs';
|
|
31
|
+
export * as sentinel from './lib/sentinel.mjs';
|
|
32
|
+
export * as shell from './lib/shell.mjs';
|
|
33
|
+
export * as shot from './lib/shot.mjs';
|
|
34
|
+
export * as sms from './lib/sms.mjs';
|
|
35
|
+
export * as storage from './lib/storage.mjs';
|
|
36
|
+
export * as tape from './lib/tape.mjs';
|
|
37
|
+
export * as uoid from './lib/uoid.mjs';
|
|
38
|
+
export * as utilitas from './lib/utilitas.mjs';
|
|
39
|
+
export { default as default } from './lib/utilitas.mjs';
|