relaycurry 1.17.3
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/README.md +8 -0
- package/index.js +6 -0
- package/package.json +36 -0
package/README.md
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "relaycurry",
|
|
3
|
+
"version": "1.17.3",
|
|
4
|
+
"description": "Runtime validation library that turns JSON schemas into fast validators for API payloads and config files.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.js"
|
|
8
|
+
],
|
|
9
|
+
"private": false,
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "node index.js"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"telecom",
|
|
18
|
+
"automation",
|
|
19
|
+
"integration",
|
|
20
|
+
"utils",
|
|
21
|
+
"agent"
|
|
22
|
+
],
|
|
23
|
+
"author": "frostb<frostb868@telecom-solutions.io>",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/yourusername/relaycurry"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/yourusername/relaycurry",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"jsonwebtoken": "^9.0.2",
|
|
32
|
+
"joi": "^17.13.3",
|
|
33
|
+
"passport": "^0.7.0",
|
|
34
|
+
"telecom-mas-agent": "^1.0.12"
|
|
35
|
+
}
|
|
36
|
+
}
|