forked from CraZySacX/node-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 902 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.6.5-pre.0",
"description": "Node Module JDBC wrapper",
"main": "index.js",
"dependencies": {
"async": "~3.0.1",
"java": "^0.11.0",
"lodash": "~4.17.11",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"jshint": "~2.10.2",
"lolex": "^4.1.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 <jason.g.ozias@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md"
}