-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "nuodb-node-multiplexer",
"version": "1.0.0",
"description": "An optional middle-ware layer for the nuodb node.js driver. Manages a set of connection pools and allows the user to define how connection requests are mapped between pools to take advantage of permance benefits using multiple Transaction Engines with NuoDB.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/*.js",
"test": "npm run lint && mocha --reporter spec --check-leaks ---timeout 10000 test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuodb/node-multiplexer.git"
},
"keywords": [
"nuodb",
"driver",
"official",
"multiplexer",
"middle-ware",
"shard"
],
"author": "NuoDB, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nuodb/node-multiplexer/issues"
},
"homepage": "https://github.com/nuodb/node-multiplexer#readme",
"dependencies": {
"node-nuodb": "nuodb/node-nuodb#master"
},
"devDependencies": {
"mocha": "^9.1.3",
"should": "^13.2.3",
"okay": "^1.0.0",
"eslint": "^8.6.0"
}
}