tom-microservice 3.2.34 → 3.2.37
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/LICENSE +0 -0
- package/README.md +1 -1
- package/bin/listen.js +0 -0
- package/package.json +28 -28
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -551,7 +551,7 @@ Your [Telegram @BotFather token](https://core.telegram.org/bots#3-how-do-i-creat
|
|
|
551
551
|
|
|
552
552
|
## License
|
|
553
553
|
|
|
554
|
-
**tom** © [Kiko Beats](https://kikobeats.com),
|
|
554
|
+
**tom** © [Kiko Beats](https://kikobeats.com), released under the [MIT](https://github.com/Kikobeats/tom-microservice/blob/master/LICENSE.md) License.<br>
|
|
555
555
|
|
|
556
556
|
Spaceman logo by [Nook Fulloption](https://thenounproject.com/term/spaceman/854189) from [the Noun Project](https://thenounproject.com/search/?q=dog%20spaceman&i=854189#).
|
|
557
557
|
|
package/bin/listen.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "tom-microservice",
|
|
3
3
|
"description": "Tom creates customers, subscriptions plans & send notifications.",
|
|
4
4
|
"homepage": "https://tom.js.org",
|
|
5
|
-
"version": "3.2.
|
|
5
|
+
"version": "3.2.37",
|
|
6
6
|
"main": "src",
|
|
7
7
|
"bin": {
|
|
8
8
|
"tom": "bin/index.js"
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"acho": "~4.0.6",
|
|
43
|
-
"beauty-error": "~1.2.
|
|
43
|
+
"beauty-error": "~1.2.15",
|
|
44
44
|
"body-parser": "~1.20.0",
|
|
45
45
|
"compression": "~1.7.4",
|
|
46
46
|
"cors": "~2.8.5",
|
|
47
|
-
"country-vat": "~1.0.
|
|
47
|
+
"country-vat": "~1.0.6",
|
|
48
48
|
"emittery": "~0.11.0",
|
|
49
49
|
"express": "~4.18.1",
|
|
50
50
|
"got": "~11.8.3",
|
|
51
|
-
"helmet": "~5.0
|
|
51
|
+
"helmet": "~5.1.0",
|
|
52
52
|
"import-modules": "~2.1.0",
|
|
53
53
|
"is-buffer": "~2.0.5",
|
|
54
54
|
"is-european": "~1.0.3",
|
|
55
55
|
"joycon": "~3.1.1",
|
|
56
56
|
"jsendp": "~2.1.0",
|
|
57
57
|
"lodash": "~4.17.21",
|
|
58
|
-
"mailgen": "~2.0.
|
|
58
|
+
"mailgen": "~2.0.25",
|
|
59
59
|
"map-values-deep": "~1.0.2",
|
|
60
60
|
"meow": "~9.0.0",
|
|
61
61
|
"morgan": "~1.10.0",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"picocolors": "~1.0.0",
|
|
68
68
|
"pretty-ms": "~7.0.1",
|
|
69
69
|
"req-country": "~1.2.2",
|
|
70
|
-
"request-ip": "~
|
|
71
|
-
"stripe": "^9.
|
|
70
|
+
"request-ip": "~3.0.2",
|
|
71
|
+
"stripe": "^9.5.0",
|
|
72
72
|
"time-span": "~4.0.0",
|
|
73
|
-
"to-query": "~1.6.
|
|
73
|
+
"to-query": "~1.6.9",
|
|
74
74
|
"twit": "~2.2.11",
|
|
75
75
|
"update-notifier": "~5.1.0"
|
|
76
76
|
},
|
|
@@ -113,25 +113,6 @@
|
|
|
113
113
|
"bin",
|
|
114
114
|
"src"
|
|
115
115
|
],
|
|
116
|
-
"scripts": {
|
|
117
|
-
"build": "gulp build && untracked > .nowignore",
|
|
118
|
-
"clean": "rm -rf node_modules",
|
|
119
|
-
"coverage": "c8 report --reporter=text-lcov | coveralls",
|
|
120
|
-
"dev": "svr src/router",
|
|
121
|
-
"dev:docs": "concurrently \"gulp\" \"npm run dev:docs:server\"",
|
|
122
|
-
"dev:docs:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
|
|
123
|
-
"lint": "standard-markdown README.md && standard",
|
|
124
|
-
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
125
|
-
"prerelease": "npm run update:check",
|
|
126
|
-
"pretest": "npm run lint",
|
|
127
|
-
"release": "git-authors-cli && git add package.json && standard-version -a",
|
|
128
|
-
"release:github": "conventional-github-releaser -p angular",
|
|
129
|
-
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
130
|
-
"start": "tom",
|
|
131
|
-
"test": "NODE_ENV=test c8 ava",
|
|
132
|
-
"update": "ncu -u",
|
|
133
|
-
"update:check": "ncu -- --error-level 2"
|
|
134
|
-
},
|
|
135
116
|
"license": "MIT",
|
|
136
117
|
"ava": {
|
|
137
118
|
"files": [
|
|
@@ -163,5 +144,24 @@
|
|
|
163
144
|
"env": [
|
|
164
145
|
"mocha"
|
|
165
146
|
]
|
|
147
|
+
},
|
|
148
|
+
"scripts": {
|
|
149
|
+
"build": "gulp build && untracked > .nowignore",
|
|
150
|
+
"clean": "rm -rf node_modules",
|
|
151
|
+
"coverage": "c8 report --reporter=text-lcov | coveralls",
|
|
152
|
+
"dev": "svr src/router",
|
|
153
|
+
"dev:docs": "concurrently \"gulp\" \"npm run dev:docs:server\"",
|
|
154
|
+
"dev:docs:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
|
|
155
|
+
"lint": "standard-markdown README.md && standard",
|
|
156
|
+
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
157
|
+
"prerelease": "npm run update:check",
|
|
158
|
+
"pretest": "npm run lint",
|
|
159
|
+
"release": "git-authors-cli && git add package.json && standard-version -a",
|
|
160
|
+
"release:github": "conventional-github-releaser -p angular",
|
|
161
|
+
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
162
|
+
"start": "tom",
|
|
163
|
+
"test": "NODE_ENV=test c8 ava",
|
|
164
|
+
"update": "ncu -i",
|
|
165
|
+
"update:check": "ncu -- --error-level 2"
|
|
166
166
|
}
|
|
167
|
-
}
|
|
167
|
+
}
|