utilitas 1989.8.52

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 ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "utilitas",
3
+ "description": "Just another common utility for Node.js.",
4
+ "version": "1989.8.52",
5
+ "private": false,
6
+ "homepage": "https://github.com/Leask/utilitas",
7
+ "main": "index.js",
8
+ "scripts": {
9
+ "start": "node index.js",
10
+ "debug": "node --inspect --trace-warnings debug.js",
11
+ "test": "node --inspect --trace-warnings test.js",
12
+ "ncuinit": "npm install -g npm-check-updates",
13
+ "updep": "npx ncu -u && npm install && ( git commit -am 'update dependencies' || true )",
14
+ "gitsync": "git pull && git push",
15
+ "prepublishOnly": "npm version patch && npm run updep && npm run gitsync"
16
+ },
17
+ "author": "Leask Wong <i@leaskh.com>",
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/Leask/utilitas.git"
22
+ },
23
+ "dependencies": {
24
+ "@sentry/node": "^6.12.0",
25
+ "base64url": "^3.0.1",
26
+ "colors": "^1.4.0",
27
+ "fast-geoip": "^1.1.37",
28
+ "file-type": "^16.5.3",
29
+ "ioredis": "^4.27.9",
30
+ "jsonwebtoken": "^8.5.1",
31
+ "mailgun-js": "^0.22.0",
32
+ "mathjs": "^9.4.5",
33
+ "mysql2": "^2.3.0",
34
+ "node-fetch": "^3.0.0",
35
+ "node-mailjet": "^3.3.4",
36
+ "ping": "^0.4.1",
37
+ "public-ip": "^4.0.4",
38
+ "qs": "^6.10.1",
39
+ "telesignsdk": "^2.2.1",
40
+ "twilio": "^3.67.2",
41
+ "uuid": "^8.3.2",
42
+ "winston": "^3.3.3",
43
+ "winston-papertrail-mproved": "^1.0.7"
44
+ }
45
+ }