forked from CraZySacX/node-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 898 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 898 Bytes
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
{
"name": "@cubejs-backend/jdbc",
"version": "0.8.1",
"description": "Node Module JDBC wrapper",
"main": "index.js",
"dependencies": {
"async": "^3.2.6",
"java": "^0.14",
"lodash": "^4.17.21",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"chai": "^4",
"jshint": "2.13.6",
"lolex": "^6.0.0",
"mocha": "^10"
},
"scripts": {
"pretest": "bash bin/startdbs",
"test": "mocha --exit",
"posttest": "bash bin/stopdbs",
"lint": "jshint lib/**.js test/**.js"
},
"repository": {
"type": "git",
"url": "git://github.com/cube-js/node-jdbc.git"
},
"directories": {
"doc": ".",
"lib": "lib"
},
"keywords": [
"node",
"jdbc",
"wrapper"
],
"engines": {
"node": ">=16"
},
"author": "Jason Ozias <jason.g.ozias@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md"
}