forked from gimenete/dbdiff
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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
{
"name": "@zooshgroup/dbdiff",
"version": "0.5.8",
"description": "Compares two databases and prints SQL commands to modify the first one in order to match the second one",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=lcov npm test && nyc report",
"docker:start": "docker-compose -f docker/docker-compose.yml --project-name dbdiff up -d --force-recreate",
"docker:stop": "docker-compose -f docker/docker-compose.yml --project-name dbdiff down",
"docker:log": "docker-compose -f docker/docker-compose.yml --project-name dbdiff logs"
},
"keywords": [
"pg",
"postgresql",
"diff",
"database"
],
"author": "Alberto Gimeno",
"license": "MIT",
"dependencies": {
"dedent": "^0.6.0",
"mysql": "^2.10.2",
"pg": "7.4.3",
"pync": "^1.0.1",
"underscore": "^1.8.3",
"yargs": "^3.29.0"
},
"devDependencies": {
"mocha": "5.2.0",
"nyc": "13.0.1",
"standard": "12.0.1"
},
"bin": {
"dbdiff": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zooshgroup/dbdiff"
}
}