forked from rodhoward/node-sybase
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 813 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 813 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
{
"name": "sybase",
"version": "1.2.1",
"description": "A simple node.js wrapper around a java/jconnect app that provides easy access to Sybase Databases without having to install odbc or freetds.",
"dependencies": {
"JSONStream": "latest"
},
"main": "src/SybaseDB.js",
"scripts": {
"test": "mocha"
},
"homepage": "http://github.com/rodhoward/node-sybase/",
"repository": {
"type": "git",
"url": "git://github.com/rodhoward/node-sybase.git"
},
"license": "MIT",
"keywords" : [
"database",
"sybase",
"jconnect",
"sql",
"java"
],
"author": "Rod Howard <rod.howard@gmail.com>",
"bugs": {
"url": "https://github.com/rodhoward/node-sybase/issues"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"mocha": "^3.0.2"
}
}