forked from linaGirl/db-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.12 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
{
"name" : "db-dump"
, "description" : "dumps a postgres schema and a partial set of tables into sql files"
, "version" : "1.0.0"
, "homepage" : "https://github.com/eventEmitter/db-dump"
, "author" : "Michael van der Weg <michael@joinbox.com> (http://joinbox.com/)"
, "license" : "MIT"
, "repository": {
"url" : "https://github.com/eventEmitter/db-dump.git"
, "type" : "git"
}
, "engines": {
"node" : ">=v6"
}
, "bugs": {
"url" : "https://github.com/eventEmitter/db-dump/issues"
}
, "dependencies": {
"ee-log" : "1.x"
, "readline" : "1.x"
}
, "devDependencies": {
"mocha" : "3.x"
}
, "optionalDependencies": {}
, "keywords" : []
, "scripts": {
"test" : "./node_modules/mocha/bin/mocha --reporter spec"
}
}