Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sql-ddl-sync

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sql-ddl-sync - npm Package Compare versions

Comparing version 0.3.12 to 0.3.13

lib/index.js

7

Changelog.md

@@ -0,3 +1,10 @@

### v0.3.13 - 2017-07-17
- Expose `.dialects`
- Update dependencies
### v0.3.12 - 2016-12-09
- Update dependencies including lodash 2 -> 4
### v0.3.11 - 2015-03-19
- Add support for custom types

47

package.json
{
"author" : "Diogo Resende <dresende@thinkdigital.pt>",
"name" : "sql-ddl-sync",
"description" : "NodeJS SQL DDL Synchronization",
"keywords" : [ "sql", "ddl", "sync", "mysql", "postgres", "sqlite" ],
"version" : "0.3.12",
"license" : "MIT",
"repository" : "http://github.com/dresende/node-sql-ddl-sync.git",
"main" : "./lib/Sync",
"scripts" : { "test": "make test" },
"engines" : { "node": "*" },
"analyse" : false,
"dependencies" : {
"lodash" : "4.17.2"
"author": "Diogo Resende <dresende@thinkdigital.pt>",
"name": "sql-ddl-sync",
"description": "NodeJS SQL DDL Synchronization",
"keywords": [
"sql",
"ddl",
"sync",
"mysql",
"postgres",
"sqlite"
],
"version": "0.3.13",
"license": "MIT",
"repository": "http://github.com/dresende/node-sql-ddl-sync.git",
"main": "./lib/index",
"scripts": {
"test": "make test"
},
"devDependencies" : {
"mocha" : "3.2.0",
"should" : "11.1.1",
"commander" : "2.9.0",
"orm" : "2.1.23"
"engines": {
"node": "*"
},
"analyse": false,
"dependencies": {
"lodash": "4.17.4"
},
"devDependencies": {
"mocha": "3.4.2",
"should": "11.2.1",
"commander": "2.9.0",
"orm": "3.2.3"
}
}

@@ -31,5 +31,5 @@ ## NodeJS SQL DDL Synchronization

```js
var orm = require("orm");
var mysql = require("mysql");
var Sync = require("sql-ddl-sync").Sync;
var orm = require("orm");
var mysql = require("mysql");
var Sync = require("sql-ddl-sync").Sync;

@@ -36,0 +36,0 @@ orm.connect("mysql://username:password@localhost/database", function (err, db) {

@@ -1,2 +0,2 @@

var Sync = require("../../lib/Sync").Sync;
var index = require("../../lib/index").Sync;
var common = require("../common");

@@ -3,0 +3,0 @@ var should = require("should");

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc