-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
44 lines (44 loc) · 891 Bytes
/
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
{
"name": "jdbc",
"version": "0.7.6",
"description": "Node Module JDBC wrapper",
"main": "index.js",
"dependencies": {
"async": "3.2.4",
"java": "^0.12.2",
"lodash": "4.17.21",
"uuid": "9.0.0",
"winston": "3.8.2"
},
"devDependencies": {
"jshint": "2.13.6",
"lolex": "^6.0.0",
"nodeunit": "~0.11.3",
"q": "^1.5.1"
},
"scripts": {
"pretest": "bash bin/startdbs",
"test": "nodeunit test",
"posttest": "bash bin/stopdbs",
"lint": "jshint lib/**.js test/**.js"
},
"repository": {
"type": "git",
"url": "git://github.com/CraZySacX/node-jdbc.git"
},
"directories": {
"doc": ".",
"lib": "lib"
},
"keywords": [
"node",
"jdbc",
"wrapper"
],
"engines": {
"node": ">=0.10"
},
"author": "Jason Ozias <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md"
}