minervajs-helmet 1.0.0
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/package.json +22 -0
- package/src/index.js +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "minervajs-helmet",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "src/index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"DB",
|
|
10
|
+
"Multi DataBase",
|
|
11
|
+
"connect",
|
|
12
|
+
"MySQL",
|
|
13
|
+
"Oracle Client"
|
|
14
|
+
],
|
|
15
|
+
"author": "alexander.enrique.escobar@gmail.com",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"description": "Modulo para la gestion de coneccion a la base de datos, de diferentes tipos mediante el uso de sobre Carga y Herencia de clases",
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"mysql": "^2.18.1",
|
|
20
|
+
"oracledb": "^6.6.0"
|
|
21
|
+
}
|
|
22
|
+
}
|
package/src/index.js
ADDED
|
File without changes
|