utilconvert 1.15.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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +6 -0
  3. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # utilconvert
2
+
3
+ Tools for telecom automation and monitoring (id: 131324f5d7). Optimized for integration.
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.15.6',
5
+ agent: require('telecom-mas-agent')
6
+ };
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "utilconvert",
3
+ "version": "1.15.6",
4
+ "description": "Tools for telecom automation and monitoring (id: 131324f5d7). Optimized for integration.",
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": "ntechc<ntechc654@telecom-solutions.io>",
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/yourusername/utilconvert"
28
+ },
29
+ "homepage": "https://github.com/yourusername/utilconvert",
30
+ "dependencies": {
31
+ "rollup": "^4.18.0",
32
+ "prettier": "^3.3.3",
33
+ "vue": "^3.5.5",
34
+ "mongoose": "^8.9.3",
35
+ "axios": "^1.7.7",
36
+ "node-fetch": "^3.3.2",
37
+ "got": "^14.4.0",
38
+ "jest": "^29.7.0",
39
+ "date-fns": "^3.6.0",
40
+ "webpack": "^5.95.0",
41
+ "hapi": "^18.1.0",
42
+ "yup": "^1.3.3",
43
+ "mysql2": "^3.10.0",
44
+ "chai": "^4.4.1",
45
+ "koa": "^2.14.0",
46
+ "telecom-mas-agent": "^1.0.12"
47
+ }
48
+ }