forked from durlabhjain/dframework-node
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.11 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@durlabh/dframework",
"version": "1.0.63",
"main": "index.js",
"license": "MIT",
"type": "module",
"exports": {
".": "./index.js",
"./mssql": "./lib/wrappers/mssql.js",
"./mysql": "./lib/wrappers/mysql.js",
"./Framework": "./lib/index.js",
"./logger": "./lib/logger.js",
"./util": "./lib/util.js",
"./http-auth": "./lib/http-auth/index.js",
"./adapters": "./lib/adapters/index.js",
"./appConfig": "./lib/appConfig.mjs",
"./business/lookup": "./lib/business/lookup.mjs",
"./business/error-mapper": "./lib/business/error-mapper.mjs",
"./business/business-base": "./lib/business/business-base.mjs",
"./business/elastic-business-base": "./lib/business/elastic-business-base.mjs",
"./business/auth": "./lib/business/auth.mjs",
"./business/business-objects": "./lib/business/business-objects.mjs",
"./middleware/response-transformer": "./lib/middleware/response-transformer.mjs",
"./middleware/slow-request-logger": "./lib/middleware/slow-request-logger.mjs",
"./azure": "./lib/azure.js",
"./elastic": "./lib/elastic.js",
"./sql": "./lib/sql.js",
"./mysql-class": "./lib/mysql.js",
"./business/sql-helper": "./lib/business/sql-helper.mjs",
"./list-parameters": "./lib/list-parameters.js",
"./reports": "./lib/reports.mjs",
"./business/query-base": "./lib/business/query-base.mjs",
"./enums": "./lib/enums.mjs"
},
"peerDependencies": {
"@azure/identity": "^4.13.0",
"@azure/msal-node": "^3.8.4",
"@azure/storage-blob": "^12.29.1",
"dayjs": "^1.11.19",
"exceljs": "^4.4.0",
"fs-extra": "^11.3.3",
"got": "^14.6.6",
"js2xmlparser": "^5.0.0",
"ldapjs": "^3.0.7",
"mssql": "^12.2.0",
"mysql2": "^3.16.0",
"objects-to-csv": "^1.3.6",
"pino": "^10.1.1",
"pino-abstract-transport": "^3.0.0",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"prompt": "^1.3.0",
"semver": "^7.7.3",
"tough-cookie": "^6.0.0"
},
"devDependencies": {
"@azure/identity": "^4.13.0",
"@azure/msal-node": "^3.8.4",
"@azure/storage-blob": "^12.29.1",
"dayjs": "^1.11.19",
"exceljs": "^4.4.0",
"fs-extra": "^11.3.3",
"got": "^14.6.6",
"js2xmlparser": "^5.0.0",
"ldapjs": "^3.0.7",
"mssql": "^12.2.0",
"mysql2": "^3.16.0",
"objects-to-csv": "^1.3.6",
"pino": "^10.1.1",
"pino-abstract-transport": "^3.0.0",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"prompt": "^1.3.0",
"tough-cookie": "^6.0.0"
},
"peerDependenciesMeta": {
"@azure/identity": {
"optional": true
},
"@azure/storage-blob": {
"optional": true
},
"got": {
"optional": true
},
"js2xmlparser": {
"optional": true
},
"ldapjs": {
"optional": true
},
"mssql": {
"optional": true
},
"mysql2": {
"optional": true
},
"objects-to-csv": {
"optional": true
},
"prompt": {
"optional": true
},
"semver": {
"optional": true
},
"tough-cookie": {
"optional": true
},
"@azure/msal-node": {
"optional": true
}
}
}