-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 742 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 742 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
{
"author": "Jeff Kunkle",
"name": "db-meta",
"keywords": [
"database",
"db",
"metadata",
"postgres"
],
"description": "Relational database metadata extraction library",
"version": "0.5.1",
"license": "MIT",
"main": "./lib/db-meta.js",
"bugs": {
"url": "https://github.com/kunklejr/node-db-meta/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kunklejr/node-db-meta.git"
},
"dependencies": {},
"devDependencies": {
"chai": "~1.1.0",
"mocha": "~1.2.1",
"mysql": "~0.9.6",
"pg": "^7.4.3",
"sqlite3": "^4.0.1"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.6"
},
"scripts": {
"test": "mocha test/*.js test/**/*.js"
}
}