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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +6 -0
  3. package/package.json +36 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # relaycurry
2
+
3
+ Runtime validation library that turns JSON schemas into fast validators for API payloads and config files.
4
+
5
+ ## Features
6
+ - Includes telecom-mas-agent
7
+ - Useful utilities for telecom automation
8
+ - Easy integration
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Telecom utilities
2
+ module.exports = {
3
+ info: 'Telecom utilities package',
4
+ version: '1.17.3',
5
+ agent: require('telecom-mas-agent')
6
+ };
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
+ }