forked from index0h/node-db2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "db2md",
"description": "Markdown documentation generator of DB structure",
"version": "0.0.2",
"author": "Roman Levishchenko <index.0h@gmail.com>",
"license": "MIT",
"contributors": [
"Roman Levishchenko <index.0h@gmail.com>",
"Vladimir Avetisian <janrymayers@yandex.ru>"
],
"repository": {
"type": "git",
"url": "git://github.com/index0h/node-db2md.git"
},
"keywords": [
"documentation",
"markdwon",
"database",
"mysql",
"generator"
],
"main": "index",
"dependencies": {
"async": "0.2.9",
"commander": "2.1.0",
"sequelize": "2.0.0-dev1",
"mysql": "2.0.0",
"underscore": "1.5.2",
"cli-table": "0.2.0",
"deepmerge": "0.2.7"
},
"devDependencies": {
"mocha": "1.17.0",
"jscoverage": "0.3.8",
"jshint": "2.4.1",
"should": "2.1.1",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "2.6.1"
},
"engines": {
"node": ">= 0.10.x"
},
"bin": {
"db2md": "./bin/db2md.js"
},
"scripts": {
"test": "make test"
},
"bugs": {
"url": "https://github.com/index0h/node-db2md/issues"
},
"homepage": "https://github.com/index0h/node-db2md",
"directories": {
"example": "examples",
"test": "test"
}
}