-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 880 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 880 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
37
38
39
40
{
"name": "dbsync",
"version": "2.0.0",
"description": "A flexible, easy-to-use, unopinionated schema migration / database change management tool.",
"author": "RealtyMapster, LLC",
"main": "./src/app.js",
"bin": {
"dbsync": "./bin/dbsync"
},
"repository": {
"type": "git",
"url": "https://github.com/realtymaps/dbsync.git"
},
"bugs": {
"url": "https://github.com/realtymaps/dbsync/issues"
},
"keywords": [
"database",
"change",
"management",
"schema",
"migration",
"dbsync"
],
"homepage": "https://github.com/realtymaps/dbsync",
"dependencies": {
"bluebird": "^2.9.25",
"coffee-script": "^1.8.0",
"glob": "4.3.x",
"knex": "^0.9.0",
"lodash": "3.x",
"wordwrap": "0.0.2",
"yargs": "3.4.x"
},
"engines" : {
"node" : ">=0.10.0"
},
"engineStrict": true,
"license": "MIT"
}