forked from ether/ueberDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.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
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
115
116
117
118
119
120
121
122
{
"name": "ueberdb2",
"description": "Transform every database into a object key value store",
"url": "https://github.com/ether/ueberDB",
"keywords": [
"database",
"keyvalue"
],
"author": {
"name": "The Etherpad Foundation"
},
"contributors": [
{
"name": "John McLear"
},
{
"name": "spcsser"
},
{
"name": "Peter Martischka"
}
],
"dependencies": {
"async": "^3.2.2",
"cassandra-driver": "^4.6.3",
"dirty": "^1.1.3",
"elasticsearch": "^16.7.2",
"mongodb": "^3.7.3",
"mssql": "^7.3.0",
"mysql": "2.18.1",
"nano": "^9.0.5",
"pg": "^8.7.1",
"redis": "^3.1.2",
"rethinkdb": "^2.4.2",
"simple-git": "^2.47.0"
},
"optionalDependencies": {
"sqlite3": "github:mapbox/node-sqlite3#593c9d498be2510d286349134537e3bf89401c4a"
},
"devDependencies": {
"cli-table": "^0.3.8",
"eslint": "^7.32.0",
"eslint-config-etherpad": "^2.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"mocha": "^9.1.3",
"randexp": "^0.5.3",
"wtfnode": "^0.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ether/ueberDB.git"
},
"main": "./index",
"version": "2.0.1",
"bugs": {
"url": "https://github.com/ether/ueberDB/issues"
},
"homepage": "https://github.com/ether/ueberDB",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha test/test*.js"
},
"_npmUser": {
"name": "johnyma22",
"email": "[email protected]"
},
"maintainers": [
{
"name": "John McLear",
"email": "[email protected]"
}
],
"eslintConfig": {
"overrides": [
{
"files": [
"**/.eslintrc.js"
],
"extends": "etherpad/node"
},
{
"files": [
"**/*"
],
"excludedFiles": [
"**/.eslintrc.js"
],
"extends": "etherpad/node"
},
{
"files": [
"test/**/*"
],
"excludedFiles": [
"**/.eslintrc.js"
],
"extends": "etherpad/tests/backend",
"overrides": [
{
"files": [
"test/lib/**/*"
],
"rules": {
"mocha/no-exports": "off"
}
}
]
}
],
"root": true
},
"engines": {
"node": "^10.17.0 || >=11.14.0"
}
}