-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 KB
/
package.json
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
{
"name": "@revaplugin/database",
"version": "1.0.2",
"description": "Database plugin for RevaBot",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm-multi-publish",
"postpublish": "npm-multi-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/revaplugin/database.git"
},
"keywords": [
"plugin",
"extension",
"module",
"revadike",
"revabot",
"revaplugin",
"database",
"typeorm",
"mysql2",
"pg",
"sqlite3",
"mssql",
"sql.js",
"oracledb",
"mongodb"
],
"dependencies": {
"@revaplugin/revaplugin": "latest",
"typeorm": "latest",
"mysql2": "latest",
"pg": "latest",
"sqlite3": "latest",
"mssql": "latest",
"sql.js": "latest",
"oracledb": "latest",
"mongodb": "latest"
},
"devDependencies": {
"@babel/eslint-parser": "latest",
"eslint": "latest",
"npm-multi-publish": "latest"
},
"author": "Revadike <[email protected]> (https://revadike.com/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/revaplugin/database/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/revaplugin/database#readme",
"publishConfig": [
{
"registry": "https://npm.pkg.github.com"
},
{
"registry": "https://registry.npmjs.org"
}
]
}