forked from gimenete/dbdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 763 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 763 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
{
"name": "dbdiff",
"version": "0.2.0",
"description": "Compares two postgresql databases and prints SQL commands to modify the first one in order to match the second one",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov ./node_modules/.bin/_mocha"
},
"keywords": [
"pg",
"postgresql",
"diff",
"database"
],
"author": "Alberto Gimeno",
"license": "MIT",
"dependencies": {
"multiline": "^1.0.2",
"pg": "^4.4.3",
"txain": "^0.4.1",
"underscore": "^1.8.3",
"yargs": "^3.29.0"
},
"devDependencies": {
"mocha": "^2.3.3",
"nyc": "^3.2.2"
},
"bin": {
"dbdiff": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gimenete/dbdiff.git"
}
}