{"_id":"dana","_rev":"44-45748ebca7b0d70530940ab1c723de01","name":"dana","time":{"modified":"2022-06-14T08:33:04.651Z","created":"2011-07-09T17:58:59.623Z","0.0.1":"2011-07-09T17:59:00.934Z","0.1.0":"2017-08-04T21:58:20.353Z","0.1.1":"2017-08-04T22:00:54.026Z","0.1.2":"2017-08-04T22:06:27.203Z","0.2.0":"2018-04-22T20:23:03.320Z","0.2.1":"2018-04-23T18:13:09.865Z","0.2.2":"2018-04-24T12:05:44.774Z","0.2.3":"2018-04-24T12:15:05.087Z","0.2.4":"2018-04-26T21:57:07.617Z","0.2.5":"2018-04-28T22:37:24.989Z","0.2.6":"2018-05-01T23:47:44.629Z","0.2.7":"2018-05-03T01:39:47.334Z","0.2.8":"2018-05-04T13:48:23.057Z","0.2.9":"2018-05-04T13:54:45.851Z","0.3.0":"2018-05-05T12:12:28.971Z","0.3.2":"2018-05-07T12:03:46.920Z","0.4.0":"2018-05-10T16:45:46.594Z","0.4.1":"2018-05-11T15:23:28.074Z","0.4.2":"2018-05-16T01:51:59.346Z","0.4.3":"2018-05-18T04:14:29.120Z","0.5.0":"2018-05-18T12:01:13.496Z","0.5.2":"2018-05-19T00:51:48.918Z","0.5.4":"2018-05-20T07:02:54.127Z","0.5.6":"2018-05-20T08:38:09.765Z","0.5.7":"2018-05-20T12:21:55.266Z","0.5.8":"2018-05-20T12:30:05.894Z","0.5.9":"2018-05-21T06:17:45.021Z","0.6.0":"2018-05-22T07:35:45.616Z","0.6.2":"2018-05-22T18:55:53.451Z","0.6.4":"2018-05-23T07:20:23.314Z","0.6.6":"2018-05-23T13:33:53.993Z","0.6.7":"2018-05-25T14:22:45.044Z","0.6.8":"2018-05-26T10:25:21.343Z","0.7.0":"2018-05-27T19:54:57.484Z","0.7.1":"2018-05-27T19:58:48.449Z","0.7.2":"2018-05-27T20:02:25.321Z","0.8.0":"2018-06-02T03:59:09.592Z","0.8.2":"2018-06-09T17:56:31.745Z","1.0.0":"2019-12-01T22:47:16.948Z"},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"dist-tags":{"latest":"1.0.0"},"description":"A simple database migration tool!","readme":"<div align=\"center\">\n\t<h1>dana</h1>\n\t<a href=\"https://travis-ci.org/ramhejazi/dana\">\n \t\t<img src=\"https://img.shields.io/travis/ramhejazi/dana.svg\">\n\t</a>\n\t<a href=\"https://www.npmjs.com/package/dana\">\n\t\t<img alt=\"dana npm version\" src=\"https://img.shields.io/npm/v/dana.svg?style=flat-square\">\n\t</a>\n\t<a href=\"https://www.npmjs.com/package/dana\">\n\t\t<img alt=\"dana downloads count\" src=\"https://img.shields.io/npm/dt/dana.svg?style=flat-square\">\n\t</a>\n\t<a href=\"https://coveralls.io/github/ramhejazi/dana\">\n\t\t<img alt=\"dana coverage status\" src=\"https://coveralls.io/repos/github/ramhejazi/dana/badge.svg\">\n\t</a>\n\t<a href=\"https://packagephobia.now.sh/badge?p=dana\">\n\t\t<img alt=\"dana installation size\" src=\"https://packagephobia.now.sh/badge?p=dana\">\n\t</a>\n\t<a href=\"https://github.com/ramhejazi/dana/blob/master/LICENSE\">\n\t\t<img alt=\"dana license\" src=\"https://img.shields.io/npm/l/dana.svg\">\n\t</a>\n</div>\n<br>\n\n> `dana` is a _simple_, _small_ and _framework-agnostic_ database schema migration utility (CLI) written in JavaScript (node.js).\n\n\n`dana` works like git somehow. It _tracks_ changes in user-defined models – simple JavaScript objects representing database tables – and _generates_ migration files.   \n\n**Key notes**:\n\n- Simple to learn, in fact, **no APIs to learn**. `dana` _auto-generates_ migration files. User just need to create models and run simple commands.\n- Models are **validated**. Migration files are generated only when models are valid!\n- Generates formatted, readable SQL.\n- Migrations files are created by using [YAML](http://yaml.org) – a human-readable data serialization language.\n- Supports rollbacking. Generated migration files contain required SQL for downgrading to previous state.\n- Migration files also contain snapshot of current database structure.\n- Currently, it **only supports MySQL** database.\n- Supports all MySQL data types, excluding [Spatial](https://dev.mysql.com/doc/refman/5.7/en/spatial-type-overview.html) and [JSON](https://dev.mysql.com/doc/refman/5.7/en/json.html).\n\n### Differences with other migration libraries:\nThere are some popular and stable migration libraries:\n- [Rails Framework's Active Record Migrations](http://guides.rubyonrails.org/active_record_migrations.html) (Ruby)\n- [Laravel Framework's Migration System](https://laravel.com/docs/5.6/migrations) (PHP)\n- [knex query builder's Migrations](http://knexjs.org/#Migrations) (JavaScript)\n\nThese tools provide APIs for defining/redefining database schemata. User creates migration files and uses these APIs for creating/editing/deleting tables, columns, indices and foreign keys. User also needs to code by using these APIs for reversing/undoing all the schema modifications for rollbacks.\n\n`dana` doesn't provide such APIs. It generates migration files by tracking and analyzing user-defined models. User creates/edits/deletes models (one model for each table), executes a CLI command (`dana migrate:make`) and a new migration file is generated.\n\nAn example for `dana` models:\n```js\nmodule.exports = {\n  tableName: 'posts',\n  schema: {\n    columns: {\n      'title': { type: 'varchar', nullable: false, comment: 'a comment!' },\n      'slug': 'varchar',\n      'author_id': 'int',\n      'created_at': 'datetime',\n      'updated_at': 'datetime'\n    },\n    indexes: [{\n      type: 'unique',\n      columns: ['title']\n    }]\n  },\n  _fid: \"sybwcf_tg\"\n}\n```\n\nAn example for `dana` migration files:\n```yaml\nup: |-\n  CREATE TABLE `posts` (\n    `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,\n    `title` VARCHAR(255) NOT NULL COMMENT 'a comment!',\n    `slug` VARCHAR(255),\n    `author_id` INT(11),\n    `created_at` DATETIME,\n    `updated_at` DATETIME,\n    PRIMARY KEY (`id`)\n  ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n  ALTER TABLE `posts` ADD UNIQUE INDEX `posts_title` (`title`);\ndown: DROP TABLE `posts`;\nspecs: ...\n```\n\n#### Pros:\n- No APIs to learn/remember!\n- Faster development.\n- Migration files' `up` and `down` sections only contain SQL.\n- Makes checking database structure easier.\n\n#### Cons:\n- `dana` is still in its infancy!\n- Currently only supports MySQL. Mentioned libraries support other SQL databases like Postgres,  Microsoft SQL Server, SQLite, and Oracle! (Support varies)\n- Currently doesn't support foreign key constraints!\n\n## Docs:\n- [Installation](#installation)\n- [Setup](#setup)\n- [Models](#models)\n\t- [Model Identifiers](#model-identifiers)\n\t- [Creating Tables](#creating-tables)\n\t- [Renaming Tables](#renaming-tables)\n\t- [Dropping Tables](#dropping-tables)\n\t- [Creating Columns](#creating-columns)\n\t- [Renaming Columns](#renaming-columns)\n\t- [Modifying Columns](#modifying-columns)\n\t- [Dropping Columns](#dropping-columns)\n\t- [Creating Indexes](#creating-indexes)\n\t- [Modifying Indexes](#modifying-indexes)\n\t- [Dropping Indexes](#dropping-indexes)\n- [Migrations](#migrations)\n- [Datatypes](https://github.com/ramhejazi/dana/blob/master/docs/datatypes.md)\n- [CLI Commands](#commands)\n- [Examples](https://github.com/ramhejazi/dana/blob/master/docs/exmaples.md)\n\n### Installation\n`dana` is available on [npm](https://docs.npmjs.com/getting-started/what-is-npm). It can be installed both locally and globally.\n\nInstalling globally via npm:\n```bash\nnpm i -g dana\n```\n\nVia [yarn](https://yarnpkg.com/en/) package manager:\n```bash\nyarn global add dana\n```\n\n### Setup\n\n`dana` needs 2 directories (`models` and `migrations`) and a configuration file (`danafile.js`). The file and directories can be created either manually or by using `dana init` command.\n\n`dana init` command creates a basic configuration file with these contents:\n\n```js\nmodule.exports = {\n  development: {\n    connection: {\n      host: 'localhost',\n      database: 'db_name',\n      user: 'db_user',\n      password: 'db_user_pass'\n    }\n  }\n}\n```\n\nIn the above file `development` (`development` is the default environment) key is treated as environment name and it's `connection` property is passed to [`mysql2`](https://github.com/sidorares/node-mysql2) library which is used for talking to database.\n\nFor adding other environments you can simply add another property to the file:\n```js\nmodule.exports = {\n   development: {...}\n   production: {...}\n};\n```\n``--env`` flag can be used for setting environment:\n```bash\n$ dana migrate:latest --env production\n```\n\n### Models\nFor each table a model file, in `models` directory, should be created. A model is a simple node module, exporting a basic JavaScript object. Model files are used for generating migration files.\n\nEach model can or must have these properties:\n\n- `tableName` (**required** `string`) Table name of the model\n- `schema` (**required** `object`)\n- `schema.columns` (**required** `object`)\n- `schema.charset` (`string`) Table character set. Default: `'utf8mb4'`\n- `schema.collation` (`string`) Table collation. Default: `'utf8mb4_unicode_ci'`\n- `schema.indexes` (`array`) An array of objects. Each object is treated as an SQL index.\n- `_fid` (**required** `string`) An unique identifier for the model.\n\n#### Model Identifiers\nEach model **must** have an unique `_fid` property. `dana` relies on existence of these properties for keeping track of table modifications. You **must not** change the `_fid` properties of tracked models after running `migrate:make` command! Otherwise, the old table is **dropped** and a _new_ table is **created** as `dana` assumes the old model has been deleted and a new model has been created!\n\n> The `_fid` exists as there is no solid way to uniquely identify each file on different file systems!\n\n`dana schema:generate` command can be used for creating base models for specified table names. The command also assigns an unique `_fid` to each created model!\n\n#### Creating Tables\nFor creating a table a new model should be created.\nIt's recommended to use `schema:generate` for creating models which also assigns a\nrequired unique file id to each generated model.\n\nAs an example, the following command creates 3 models in `models` directory:\n\n```bash\ndana schema:generate posts categories tags\n```\n> The table is created after running `migrate:make` for making a migration file and running `migration:latest` for executing migration files!\n\n#### Renaming Tables\nSimply change the model `tableName` property.\n\n#### Dropping Tables\nA table is dropped when removal of the corresponding model is detected.\n\n#### Creating Columns\nFor adding a column to a table, a property should be added to `schema.columns` property\nof the table's model. The property name is the column name and it's value column definitions. The value can be a string (shorthand) or an object.\n\nExample:\n```js\n  schema: {\n    columns: {\n      'username': 'varchar',\n      'real_name': { type: 'varchar', length: 40 },\n      'bio': { type: 'text' }\n    }\n  }\n```\nSee [Supported Data Types](https://github.com/ramhejazi/dana/blob/master/docs/datatypes.md) for more details.\n\n#### Renaming Columns\n`dana` doesn't support table renaming operation as there is no way to detect which property has been changed without using an unique ID for each column (makes everything complicated) or guessing (will have unwanted side-effects).\n\n#### Modifying Columns\nChange the definitions of the column.\n\n#### Dropping Columns\nRemove the corresponding column property from the table's model.\n\n#### Creating Indexes\nFor creating indexes you can set the `schema.indexes` property of the model to an array. Each element of this array represents an index and must be an object with these properties:\n\n- `type` (**required** `string`)\nType of the index. Possible values are: `'index'`, `'fulltext'` and `'unique'`\n- `columns` (**required** `array`) An array of column name(s) for the index\n\nExample:\n```js\nschema: {\n  columnsL ...\n  indexes: [{\n    type: 'index',\n    columns: ['foo', 'bar']\n  }, {\n    type: 'fulltext',\n    columns: ['baz(10)']\n  }]\n}\n```\n\n#### Modifying Indexes\nChange an object representing the index. SQL for dropping the old index and creating new index will be generated.\n\n#### Dropping Indexes\nRemove the corresponding object for the index.\n\n### Migrations\nMigration files are created by using Yaml in the `migrations` directory. These files are generated dynamically by `dana` and **must not** be modified manually. Each file has 3 keys:\n\n- `up` - SQL generated by diff-ing current and last stored version of models.\n- `down` - SQL generated for rollbacking to previous version.\n- `specs` - Current snapshot of models in `models` directory.\n\n#### Creating Migrations\nFor creating a migration file `dana migrate:make` CLI command should be executed. The command analyzes project models and creates a migration file with `.yml` extension.\n\n#### Running migrations\nFor executing migration files you can run the `dana migrate:latest` command which executes all the remaining migration files. For rolling-back the latest batch of migration files you can run the `dana migrate:rollback` command.\n\n`dana` creates a MySQL table with name of `dana_migrations` for managing and keeping track of executed migration files.\n\n## Commands:\nUsage: `dana [options] [command]`\n\n### Options:\n\n    -V, --version      output the version number\n    -h, --help         output usage information\n    --danafile [path]  specify the danafile path.\n    --cwd [path]       specify the working directory.\n    --env [name]       environment, default: process.env.NODE_ENV || development\n\n\n### `dana init`\nCreates a fresh `danafile.js` and missing directories: `models` and `migrations`.\n\n### `dana model:generate [tables...]`\nGenerates model(s) for the specified table name(s). The table names are checked and validated before creating models.\n\n### `dana migrate:make`\nTracks model specification changes and creates a new migration file. The command doesn't create a migration file when models are invalid or there is no schema change detected.\n\n### `dana migrate:latest`\nExecutes all non-executed migration files. All executed migration files are labeled by a batch number which is used during rollbacking the migration files.\n\n### `dana migrate:rollback`\nRollbacks migrated migration files by executing SQL stored in `down` sections of migration files.\n\n### `dana datatype [types...]`\nShows details about supported MySQL datatypes. Example: `dana dt varchar`.\n\n## License\n[MIT](https://github.com/ramhejazi/dana/blob/master/LICENSE)\n","versions":{"0.1.0":{"name":"dana","version":"0.1.0","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"./node_modules/mocha/bin/mocha test","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"52f411bf93aeef3d1c8bf7a88f0dc7f0e772d6e5","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.1.0","_shasum":"3b3bf09e4fe2ac6863bd6f7a70b752ee0dadc55c","_from":".","_npmVersion":"4.3.0","_nodeVersion":"6.9.4","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"shasum":"3b3bf09e4fe2ac6863bd6f7a70b752ee0dadc55c","tarball":"https://registry.npmjs.org/dana/-/dana-0.1.0.tgz","integrity":"sha512-3wtW9/lX3MsnFKvQGGWWX7/v5NHoZLGFw8ICiXcwP/hn0JKzbyPMhXACbFqS/nMLJ4wB4oi3MiqkCsXnBF2tFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbj9idYH9TaSvw6TgrrcmTDskkWdQY6ezHQLKlonSgDwIhAO6PUsxEEI3NQfTw60s9g/dDAqRNfsBGCvRHjDrPgIlb"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana-0.1.0.tgz_1501883900239_0.7589350580237806"},"directories":{}},"0.1.1":{"name":"dana","version":"0.1.1","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"./node_modules/mocha/bin/mocha test","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"22bf194324f4445006078456d81280f9cbe33f94","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.1.1","_shasum":"783cdfbae509e4ee3bc2cbef59532bfa714329c8","_from":".","_npmVersion":"4.3.0","_nodeVersion":"6.9.4","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"shasum":"783cdfbae509e4ee3bc2cbef59532bfa714329c8","tarball":"https://registry.npmjs.org/dana/-/dana-0.1.1.tgz","integrity":"sha512-eHY4qcRsBhkoiE9Z8LT/UT1SIgN1mhOLWxtUrSup5nc+mifraImBWT9zP2fiCPyFLPOFOhRzn5h8kdw3o/o+Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICNWXa5iubT/vUDEZJetSMV0nsjRE3X/XD4bAXhyRtFUAiEA2Hm/JIE9sb+Hc64604IgMew4Zvt84L75mv0SCcqlaxU="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana-0.1.1.tgz_1501884053019_0.2930029013659805"},"directories":{}},"0.1.2":{"name":"dana","version":"0.1.2","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"./node_modules/mocha/bin/mocha test","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"c7813834848d1af56bb33a418f3ec887dca1d09f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.1.2","_shasum":"8c585b29b34932cf12c356028ef7fde5ff89069b","_from":".","_npmVersion":"4.3.0","_nodeVersion":"6.9.4","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"shasum":"8c585b29b34932cf12c356028ef7fde5ff89069b","tarball":"https://registry.npmjs.org/dana/-/dana-0.1.2.tgz","integrity":"sha512-26D5BioZQ6IsOU51NhHB22vKPyXA/65JDoCp3XoBc4IZ2W+sAdXDRuk9sTqVlZCYPS2DRIXWUoBJWN64A0QfIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCy0BsgMV68MCwvaFefLI22wzCHgaE5LRiCZBRCjTcbfgIhAK/BzYdjQTJc5B1mFks9xxzs2CfZOfhGu0qW6tuYQuYe"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana-0.1.2.tgz_1501884386147_0.5594528920482844"},"directories":{}},"0.2.0":{"name":"dana","version":"0.2.0","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"a4dad474d794bff81caa3d4f5d3f50217b8dde10","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-gXEQb2/IW3FrDhlG5DHeG3eapPLxAjljjY9QMHMM0Cqyw7sRpEpkbgtRdSmoPoEY5BIDAUwEE5jyXoqCrjtB3w==","shasum":"8c4329d56e93dc62d3ed8b2ba707420984ee5001","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.0.tgz","fileCount":44,"unpackedSize":91744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3O8oCRA9TVsSAnZWagAATn0P/3UzRG0BdvM8A7iC85hM\nleQrU1rjqSBvNrPok+XwwkGJdVjxthrC+opuvZ6MA0hwLjiKpJrmn/Cmptlo\nmgIESYct9uEovmcVO+XtTcUOd0LJgHKBzZg6u2GJ+vvX+t4S5/YS8k/6FGY2\nAVnfDez4P0BVZuL29YvGhSPOAq1/0x53ZqivzSkHhOh4Oc0iwJFdAbbsMjaI\nZFKBWyZQyI68MYqUqUnNVVfGKFAncINpuYTruQMcajxRuzXFtw4WwtRH7ypE\nZnicOtxL61lYyO07Gk0jpy18ZqKRbwx9iouaxq3tipIET6PC7tHUY2NFAapB\ndkAdk7KSTkNVqh8ZcmvCuq0Zx7j+dnMAEcTs9Ui860Ez9sBkkoittS+yYPXt\n5syPhIHee+R5zdmzVb6GH25zW0L77t29gv+zQ34SOAVGncTthOmkJGsG6da1\n+VrTOg1YUXJwVWGEvA8TvcrK7m6Lo63j7bm4ioWWoaU9pQkynDR8KiefJo2a\nSvavVF393Hlb4rK7DdvUpc7JMpdq8jqyldn4XYrwW8gWYNu6AHux5MVW4y0U\nVl+2Nz+xPTwNx1ZyyWARzGerug7BON9dHAes2mffBBmHNOn5cwlTY99Tdgw0\nilXGOTR/zZCWn5vuAX2tBFMxG1gzMKs80c2qq/sk69BAvhBJB0ecROyyUVeU\nhsLI\r\n=uuNz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAdzZAYuo98Z32tTVAyfU9WCMW/DE/dAleoKfZLM8e5WAiBSLEqwlrNPqD75EjY9iPMv+80kZ/Hv8iy55Xr8nTOIfg=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.0_1524428583226_0.6800501091201339"},"_hasShrinkwrap":false},"0.2.1":{"name":"dana","version":"0.2.1","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"95a23aea807337b1dd33849285b7c8c0db496332","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-I3yfWCN9lpyZEpfqLa5jkG3A4JVKUDP7/WNRMEGjHwR9zGYOUTonJ0Lpsl/kTrcrzdZ/QRjx0lRlOqr6Aq0fvQ==","shasum":"ac0ef0bcd87b1001cd7c8a609c712cf8d7490729","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.1.tgz","fileCount":44,"unpackedSize":94819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3iI2CRA9TVsSAnZWagAAyIEP/RsMtzOX5Txat/MnMLJ/\ng2vc6EaHtNGg8h+KnuiWLC/ZrbbZNFNzgWvZ+Wotp1xiceSpLfnUb8Yv9uRv\n/aeqScm5oSdMyxEn94aOCQlGFvHh0F1ubfeRKNvZCltMFJ+WVXflCao9cfvn\nG4+NlRjefoSAf67JB4Gr3CwOfS2ikPG+QR01PYe0YkBcvGbfakTnLJiWB6/P\nt+KxiGK9GwGgwy/xhnQ2eDr1xSPxwHKdGPdj+cMB8vRkwDfR0WrRW7gyJVjL\n71B41TdU68s8qVnQD2DS0UlhnjEAmKxutqC4lFc7BBpuGozc8e/Dohn5gB53\n4IrWSZASJEkNOF5FLurXK1kqBcJUsLgCbC9PUolJ77+Vle3EfTwxZ/KL1Of+\nof4MmYWmGhgxsVkbZe7tY1bSlMKoIOZlKqjxGqVl2Y5LoOk5/qRQb05rf0ku\nI4Y6/rQ/p6dWx49yjhRDtq+z7RRPTxqzsaAJt/bIxOvGCzdx9LyOj3RFJc3e\nEddrmcs2rMNY7elGYa50A1XVV5C3QF2FkcHWkNOtXGUB3ZBAz/Vmhhr5qp43\n209gBXX3VNcoZOMekTVgDK9e0MRhCEoQ6UO8MT/aV66Bhslxpcj2JXOhDhtO\nN8VgC0WgQP9T5cJxewUcZt1Xa1e/5cZOg9emKWmmQYSEeSLiU1y86MxH32NW\ngpvU\r\n=G8PG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD/Jwv/LkJ0TzSdtBJJOpTAdVZ5EJWfVeS37ByfVmWQ/QIhANAUfsh+DYZ7d4Pl72Zz7WQpPqXwj2d7kJfxcQEUsmaV"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.1_1524507189773_0.742779351499498"},"_hasShrinkwrap":false},"0.2.2":{"name":"dana","version":"0.2.2","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"7b8d914eb12678d977a705cce0e42259e3ca482d","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-2YG7cKG3RYR6gCRoARUrJ/hQRQ8tG4cbY7hJAVvC8d1YQVEa7a62+Mcr2i/P+7ua6RI7C7aiSeXE1Wl7KAE3cQ==","shasum":"3feaba2acddde067ee3327574dc2ba1aad6e86b8","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.2.tgz","fileCount":44,"unpackedSize":94845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3x2ZCRA9TVsSAnZWagAAQNcP/Anq52WYAKfQyohXj6tX\n6RkrKyFWmJZndkVgPxcIjRAHjJPRv6gWyY6PsVEq2HFIRmpUEq0LAZ2qrukB\nO4YiXBVxUgpd2oYq6i0+rdBwOz4PTW9liUCeGUoJHI5gamCd1QKl+DydbAUq\nyhunvdz3wHjRCHXriz7iHlxq5/rxPs99O/REDI7cgR8spAhd1vOGYGjvCOyD\nU68+JgiZ2FO0V/31Obx9MXPlxOBMrCL+i6JDAuf9JvZ4LtU/i84ahUkFGHu9\ntZpE6HRQZ5MldZyOvRoEw0Lb4UChbQ4rWQ3jFQFZ0mNSxa93nXy5WFsg3J2H\n3fDWrvOPHOAPevgPxUGZBkZp6kFiclaZ8JSc8y2fwSuc5YNrGXUkk4NRlGkd\nyCwvMtMRePtK/z4jZMX3qwk5YnCXhvEJt+pUrefLmnVrYvAvSVvMc9/ysNyA\nnIDax20z894EVmAii+4rYMptt7nwmcEfvxf+nv6CUZXbvH4oljOVONb/45gb\nxpm/rAdTZCfQwc2EiJRb+vjOD9tpTeL1N8E1vF33OBDXqwzNJbKnKjaXBpgP\nw+54bDr0Z0ndbq+CFPOlkxWxqIsAB4bYqkIXhOjkHeaZDT4O2jm2SdqzCRm4\nXsg/Jhs6V5ZB8SS1Ad4dRbREh4ojqo1q7t6CGsf/A4kFKILi9ez4EeWiRbJZ\nVvy0\r\n=LsiS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHWXm87aP3M/XIC5d1fZ46RHrEE9cuXNlx7lkZEcnlTnAiA3vbhjoovrI+CmPDjA0jFZHLYfkpSGDZ0MbV9eEkOtew=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.2_1524571544700_0.8426422608966571"},"_hasShrinkwrap":false},"0.2.3":{"name":"dana","version":"0.2.3","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"3694993cc3689b744f8ff908819cd4429a9f464f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-kigyZ+Z7WDVZhPyyX67WDcx3u6a3S5z2mrKQFKmpvVfKEwPfp0h8DZGfuaHfDdIJA1tGYBepD+50McYrAzmMZA==","shasum":"bee02331d8e62803ae9777bae68eb80d6aad9aed","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.3.tgz","fileCount":44,"unpackedSize":94854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3x/KCRA9TVsSAnZWagAATKAP/2KfDAd//0aVz7lfb2ne\nCypL7MCotk0yjUJovfsyXiIUKgawJVTb7rrSNFUkykPA+epzPNwghwwZSmHu\nUkL4hu3zYl2aCBOscLLrGoA4yNAFleemCXGZMf/mxSyyR/VeMPlx1XR2tnbu\nZ3PpBp1RneTlAYJxEniof/S9V3SZOUCQrG/8TqDbokIBNGdktBwWZTQnrSqg\nxJD9GQSN7MoeItOY8JiODzpjljJpqvgoKOSfW8ck1Umbm6vS60VTFOtlwXsi\nXInyO5r2a2MZvqiAz1uLMLY/faohVD6e5Mg4IUlpC4Ed5fB+9nrJWcoc2s4I\nY4g8f2FWlukzhNvCmMPz8NPCh13wodLxhF7IZ3OKQf9GYEyX7kGqX/r0VemR\nq5OholQgUmssz2i8nU4WyubDZkfCtCqXoEujDzSkh+OpEUiyArN3vxDPt1zt\nFzCCpqZPDNx+qPcVal+UU6phTG/z7lwcvO/XpNaznksGXHuqa5JdEL7WeYPY\nerRFvDMp5JJLm1qsjhR/3JgLsGp0+ps3fSISmTMmQtwgntLatCCEXXlC7V37\n2eWZqkkY2gtzefXu1RdsooXYl9+n/Nc9mKqHampvxiBZ3S7fFC66aO42GcRC\nNqHXzHXkVui7yJvcgTQM6t61Ous4mZnrXofWbjY6iEft8+FTWr7FD6vdk9Ww\nwhHz\r\n=G1uK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNaoUPzNyCyut+RCwv8WhGbm+V9KoBUbloAyCxUDsF4gIgQaBAf+zPLnG5SQKWYRbpiXvgsB1haRQ7WfVWMQY9TbI="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.3_1524572105000_0.56368831174306"},"_hasShrinkwrap":false},"0.2.4":{"name":"dana","version":"0.2.4","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"dfed73ff54a4e53b6c83d9fd0db30c73a7c8834f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.4","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-ez/p0u8V2mD97zMOzwnKoA5CA4nn/D5Ejp2QRYbQ1saXQlOxOB4dzzUVMn5KypPDJRhgKZNev/vLoL7IahjUJg==","shasum":"f09c128ec894385bf4b1c439e8a6f0c2c9da29de","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.4.tgz","fileCount":44,"unpackedSize":100967,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4ks0CRA9TVsSAnZWagAA2LYQAJWSJVSR/BcZg0Kgd8D/\ntUONnB4KxweixVdXWdUNNN7D6n08xQ6y9mjtWiH1VzIGJY7r6NzoLasUP9N1\nC+v+lFaIt2eJZpvs066CXlpC3TQfNA6QkcguxeRcSeilaoxlpQE1Duzgl68D\nd4ecvmz4a+zUY7UDA6OMHyi4NVeZ6gkEDppiaLxlp6GyQ34+qMynAsZApBa7\nP930beb4TmqXdGpeLNl4NX8ze3qe4vYY6LEn862ir//eQ89cHORfahBkgKre\ncLvngZCB5Mws4gDzOaoO/73aJ84xq7l9ot4v0Jmw276ED5s4Jy9hP3pVs5zI\ng/NOPTru8Ysv3E0K7vZMmGLMwXclo/EPWdl/RFSg/fggZU53CK5zkjsH+u29\nWruo8LO+kINZf8h9LhU/O7CaYcDpKWkADkpWD7ibl9H5LJ93W3yhy5X1B0VV\n2xxQTRdM0eGsM6k4kRCJhkr1r1Rrq8DC21tcCPYK5tbFxcr8yhGvjvW1Lz/D\nKo4IF5dbpkagQ1g93jbIDM1KhLnQeviMz6YfpG9oKyTvYXqzZDl0df05Q1Op\nj8BwAGt31fyxaaaBHRO9EizMcwV4yCLIq6UQhtW7L2GF4U0r3GRhrf9yop2L\nSQaC6RIW8Z590aaPjLyADzOOxmq5wOKaB6AjAgrgHg9FG1cU4ealme3htwyg\ngEw/\r\n=k3kl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDWCeHnSa61b35nrnsyedYOW/DLhBik8gFZzVr9/K3icgIgcVRvB/9EyoaETnEtNm5J/l0tsq3WCI99xfTMMkUlOuY="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.4_1524779827522_0.4944895080149423"},"_hasShrinkwrap":false},"0.2.5":{"name":"dana","version":"0.2.5","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"./node_modules/mocha/bin/mocha test/unit","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"mocha":"^3.4.2"},"gitHead":"43fc350c81e2514413f8b9b91d0f87a097be4f41","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.5","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-rCn5BN1KvnvPVosO7N2OrypbBfQORmyAgxLGBEZjKxQu3uJFy0J47QL5JtQ9Uyt0mP7Zoj8XJmtkoFiqM3QMzQ==","shasum":"189b55a38dca47e2c23b33a65fadc450c5c9a578","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.5.tgz","fileCount":44,"unpackedSize":104631,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5PemCRA9TVsSAnZWagAA+loP/0Zb1lMYTk5GqFp8nZoA\nBNLdByyjy46Ki2lc2vwu6uE/jJLEjYk7jkpdkpWhmBlorx/GGQJPU3XBj/pD\nbczBOM4i4V4p3WPg7rSpyIzBIOsjhItyk3krgc5/Bg6/TfP5+x5CjGnfaFY6\nXv+hhyb0hUihr67T32C/+1dwRIhHZrB/dIvK66evWkiC9aCz5JxlNukUBohG\n4gDpKIB34smCSWeP9XNVepm/GskXI+OoCS38ZK7tVNZgOUBawLMI8vrX3GFL\nZcTXL3iAR253gwvvVboTEzLWFfFZXB17d3uo/5aZASndmeUUgBWKg7c8qzQL\nBk40DOv/8bWPI+ZbK7PZ5nM+5SdCJChBlXwsCfXxK/fnlEFyrg9eDyzJTwZS\n5iLp/Yumv1WJDYC0S4tu5GwXa3yNtaWzsq+o+DBboulqB2G1PTVhOG9OUfOG\ngQEJV0pe5IJwuyioDu0pbj38+BizCiuF8pNK6hz4DyioAipCf+KJZh4mVlU/\nWhUMrOMz/T+Z1xzovavMW7M6SdJ/y4vELs5zKx8fvjOw1WENJXqGlxJ7SCU2\ntEdrq+vsOV4v8dOrA8nr8cFBf97BUAn0HYwK6v55vATmczFynHQjImEHgvNa\nyQJNyzQV+ENIC6EUVzU8TAkir4zh5FHVhciXrEOxc/1AgEcE8HEfJdPrY91F\nr6If\r\n=Ew0h\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICemsjhKU9uklBwrsoMThhbrlLpcAKdd0Jj3Njfxpvx1AiAs091iUliCUVeXGrYgTgqp8UuTJQtFBdwmmXJyLnSrBg=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.5_1524955044839_0.6399976873036437"},"_hasShrinkwrap":false},"0.2.6":{"name":"dana","version":"0.2.6","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"nyc ./node_modules/mocha/bin/mocha test/unit/*","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","nyc":"^11.7.1"},"gitHead":"0c857fe55fd1c1b8c61f339c3cc3fe855794e04e","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.6","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-q2zeIqFJ7iXHtAfByyio7xj8tudLfHm8HYnJPHinczHb2BJJs8ywsc16aCWGLMAxH7erSpwz8UAac9ABHnppew==","shasum":"3024aae20a21537e360122a5538fc4174eae7ef4","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.6.tgz","fileCount":47,"unpackedSize":194598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6PyhCRA9TVsSAnZWagAAFWMP/3ZIbo2Z4lAdLmIw7Zhw\nbi08K1+4gxKz2sNklX4NE54Wk+DSXxYGnTvRydpbIJchGHsAcMdTwuwLa5GW\nEkedqZaNBvDeFuY9QbGbcFvYXC4Pm3WHMninyQd/wW5d4lJ7WJPxh+IIUKmG\nd3ZOvC3vZ+08PeP/WYnzcWHeRseZMFiEC17cixiOsvSsvZnL9wiB0mCiVyzQ\nx0tHPrT2QvOfcCnjabJ9MgIouGJqwULwJwa/RVWe4W/gYIFyzbN9xl7bbo+J\nmA9kbPbOucudPwPcvtMlPkru/4/+/Fu0i4xNUMKDpmF28/jh2xQ7P3OeiQbx\nAApiAkF42Nn4qVxbmkSBSL7rpM6RwcxLq7Su4Ntisjb0l4EH9GIslhcgGjSV\nDH57YMvcCXyMPG+XynTU5hpKme7hYYd/IUFHp95yOgfwHenNN84qQRobtkTz\nAmAxNwbD6pOvsK6XUeg4stovfT7NRVKqyGjp+Oad9lKwpR5bbKOPxiCMLuHI\nRGuf/jR9B3z77e+uelq16/NzCgiNszpyQg5PX/B67oymh+CNn2NahWNDUA2k\n9sEG8/V7w/QYS2OHd8UVE/EJfpgBTBjolguBeD1/BVyuUOeoio4RbBhcsspR\n1uP2zTJAccvsMcvcWt92TXrA5OsZ1cvh084A1MduOjdjsLHvfWF76jbTKDLv\nXn3Y\r\n=g4a+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDa2iiRhAH/WJHDVJSi8hvpQAWXdRK/2IP5XHvg5WVEvgIhAIoKZcBnXTjdG8+kikavNKNZLgKcu0k2akpJk1I/pkym"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.6_1525218464383_0.8595455638066873"},"_hasShrinkwrap":false},"0.2.7":{"name":"dana","version":"0.2.7","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","nyc":"^11.7.1"},"gitHead":"9af4fd336ee315eacb6c895e9526bad63843065b","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.7","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-bGkOgXuNFq2jQULcI5LLr/xfP3n3tod7JcUFFexc7WW10t6Bqcl7pH9kUs4vGrw593PAHo2TuiS8gn775i2Xfg==","shasum":"16b3032eb42ef0e651d7bcdac1441ff96c677a7e","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.7.tgz","fileCount":108,"unpackedSize":817783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6mhkCRA9TVsSAnZWagAAh3QP/jEagYuCx5AD9fFP5aEE\nL1Ml8XTj5zZOCmKPNMaw6puKEnqQsfMutMMExfLzObR0biLQ4wB3PlZmkxAO\nm8/wThupAL5ZHC8cL2MXIkAKP2CwrmrCs02ivlLYSGpdSISiDgazSrZilhqR\nJLBpYmfiAWvFVjKLkEA3TbvCv+f/4vzC8rA4ol7HeDGMb0+5iljwcWve6VTr\nlOHd5VAMpWvN8TMFGRPVk1XfF7UAm505xmG/tUCwT+23t/00/xQ5DejzJTBV\n2OE5Z9BzNOVHar/2eXsIyw24IqNYnwCzcTIa+SdlYnhNABqYso2v5YHFZQem\nCRy39lh+6TYWM43X25QTz3UNWCc4o+PWqAKuN4AX2A68DuSY+ojP5WrHOJgO\njnImR4qPmVo01zSVEpJ0aaiBhTCbPNeQ9oXhZ0IXOxEUtDC0oejNvYsGdttZ\nJhdce19qjIxWBu9sA2KGiChH8e3pFLRIq3BYz82Wy3ReX+TNIGun/hUigcj0\nWC5W8lP6SuL1orK/FZjX6TOuqJXDY1v3pS6dhg2XOEw37W0UXsla6euxZX8R\nXQB8FoLk+bp/ss1v6jZ478fIXAf5RNCmasflJdXYFByY7HlGOYICqpc0Akxw\nYsE1u7pjhKP0XjovRm2mTH/2wv1eNTIPf6Y+b1HFb/KGaejEWtU9qwfNKIWO\nrjw7\r\n=fnhf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICNLV6AvHdV9WOpve6A8kfNpGS8VykuAalEpKd+UNCWXAiEAoyg3VgDhRlqXq+DJeZahXfqrmJhrKWjOc5jlkqxy6u8="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.7_1525311587267_0.14521953202142956"},"_hasShrinkwrap":false},"0.2.8":{"name":"dana","version":"0.2.8","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","nyc":"^11.7.1"},"gitHead":"b156d8f7fadc2a41e3678675bbc33e1b111b2f37","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.8","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-ajo8wr5NTstbauEMAiiaP+aD8q5DfhV5p0dzRUrDqCnFRDBK6RSqRlOTZHdiQhlxIGtlquK9XPl5j1ZpBdd8dA==","shasum":"dc2c39add89910f7332196b96c07a0a77b42ed0a","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.8.tgz","fileCount":109,"unpackedSize":859485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7GSoCRA9TVsSAnZWagAA7/QP/07K9tYw//qHcV8xtTns\nTi4FBgpM/InMNbyjNv9dz7wHo0Hk6MkB4z77hE32gpqQ6g8WVPJfFqgy3UCZ\nSeVGxayL4+dQ0p7P6IZZeLofl3RxB9f2yGySXdlsoweZsWQziGkh4+ZjgsOs\nKWvRsyF+aOZxAH1LKkt1awbmx5PadeWNaGu9/oCROp/Y2+Zoys3JW3HpaAnd\ntZOayoLQtX2l+r4Yw08VU6vwvLeRVHAhsINKIufnhdQVmVAJHr369Zkg1i/u\nfpu+WPEOVL6YVyPrIPiPq+bmxssUByFkHflPVJ63yiF+hMkvz1ALWVNpQZ2a\nxe2QVjHfElMPDorfBwDa/fmFxsyHtb+kTUSny+BywW37x7vt+3r7CljxUL4r\n9/AsiFYy9NO+nV68CtG1/1W0u1Y3k0kTxHngmQf8yWpV5S5mz2xPD/jxPqBV\nhtxVunOLe4fjKmLGXPBF/4ApxVxgEl2SsF7xm/I1aUDWGEAbKziTvqKMDS9M\nFeOmK5wAl3j9X2CheLPdylEER0Env0G4prYzd9LVyEplTjbr3F5WVJ3C3izI\nOU9MpZvMgrvLgC9IaFpNih2RcMzKxSu//S6bHh6nY4swZ+c+j5srxG54qi0u\nEXMKLQKHGwCLBuUQFUsMZ4kwZt/qN8lbE1REgQAYYRZywishz5vuv4kxHJ9O\nf6MA\r\n=A1Y6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEKE8pV8D6XHRanczia+fzKE1OCSFHB6Wz521y73n7rLAiEAz0I3e8UAsUi9pWhusEsfCGQgkpsHmz5ZkWzwkKQPUY4="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.8_1525441702984_0.6210598220897359"},"_hasShrinkwrap":false},"0.2.9":{"name":"dana","version":"0.2.9","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","nyc":"^11.7.1"},"gitHead":"d932c7ec03a463f5f6ccb6e6fc85505caa518e3a","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.2.9","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-0vbC05Qf2aQLr/faw7PtN8YZgJGsg1aGVXGeF1UVmvpPK6n2sRjGPzMlTEegsCGP+pkH6TWdgkB5DM5E1q6iuw==","shasum":"da076adeefdd4fe8397e38db18021db510313a87","tarball":"https://registry.npmjs.org/dana/-/dana-0.2.9.tgz","fileCount":41,"unpackedSize":107670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7GYmCRA9TVsSAnZWagAAe/MP/jkQJzGmnobiVax1OKAi\n8345qso82R9+BZeBmuQAGe6FrUs5Qo0Ywxhiq5q0u2j1ymVB6Qq9o0WzKpsi\ncTkMt7+31ECY3FQzVrbQqGx4lla5DRcnJk1vSbfGHvCUnXI605yverhr6fDD\neDurkTlHBGuJumAignQ4I2DDrYVLxjwOPZrPg2AGYXFWKm58SLXMXWb7pPGR\ns2CmbbVvsP3qoB+rbBo33x5y6DkZl0MlGt/mblxGeao4XZLijrIpkWD/4/63\nfRf4cKQozIomud0wvZ3pnhMMXP/Oy580V1meaRr6/1VS9ZL1ZTj/ph8Od16a\nKNxowT14I2W5qLDK0p51kyZ+dYVPhsI4+N30aEnPheszhoLG2GsW6N5CfzPg\n3wcXVQcQx007U6kaxIpudFndl9Jx/0SNHPwwp/7jeM058j7feXa+uwGPXfM8\nvanmmBGFlwVRdj9sQCbJqO8csCz8uGCqinvC0BbCT5TgG1mDU4g/ibP5mIfv\nPRw1NP/uprWFdF+dhpVJJ4MTuVDsQceL0Ljv9o7Nburz23Opd4RCQMfjxSVM\nURSbM3s1Zn3qlWjwZEYuUk/c4B336uSWD70Ov2gF7gWQ5vdmXOdlrAk/dBhK\nOdzO5ZSVNk5dv/xddthJ5BLp23CFtZuneH2plidmUF0xgY1ozrjnPfbqJ6iS\nVlUZ\r\n=OwzU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCVuxz52wDjAuUJ2w8uzlI7sS4T5ZltqbR6VoZf/GKwGQIhAKkjEFSk/e26SFgsXQS48jyl0GdAdUvsuWD0mD2jOJ5G"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.2.9_1525442085770_0.9656191093327675"},"_hasShrinkwrap":false},"0.3.0":{"name":"dana","version":"0.3.0","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"unit_test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","integration_test":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1"},"gitHead":"d66c1b36f378f6fbab1cf210e9ee8360bf0384b0","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.3.0","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-YsKzZC7xKO8VsvQCmV5OFY/cVbLPxWf5kYWbs9uDNoqfgf3F4DPd2DUV2zaFFzHgBvmPUmzvcyYIOfBVOEuWgg==","shasum":"a9c9b95435c09b9a23c72d5e2d0f062672ff54b4","tarball":"https://registry.npmjs.org/dana/-/dana-0.3.0.tgz","fileCount":41,"unpackedSize":108111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7Z+tCRA9TVsSAnZWagAAp/gP/1Tk8JiYOvvK99c4rRzy\nLq6J6CQWnB7nIjqnFmBJOPgUqfOALjlYbNFYC4he1XLF2Fs2TDGRc+R24vzY\n3HicXbZ0iwL5788zfyOcnqwiZNXlk5m05T+NBJexSgG9CQN8pCKnoLlPTkv1\nMADcRrSCxMR7Yph9v80GGT/uZnvgAvvKQLUxIUlGv+6TMYoReqVnqy2LY/pa\n+BnQo8zGYX8zjDOnozbulB8SlJwG7M/m5QwgOZjenZ+/1ebrzZ67dHgfUBM3\n/T4qhs9Lst1Pr7dl0+GKmGitgoLqEkcTjl0iEFq8tvdcBFJsqNgeu1OQRB1a\nglFfXcuDYKL07OA6tXbgc9ggm7Ruyi4a4jkuXpQ/RECK+n7hLqwbPBrk78Xs\nEmfVvPZFXKAZSYsjXQ1gzk+ncWi7VkjLvVhxrqOCBPwaxYMBVkr5e3tKhw81\nFum73CslzmQry3S2Q1+ikRW0Hoyqu0lrAWqYUtQIR3Lu1y7+Ux8zaC0HklKy\nrpGG3UTxvRP/rAEmv2868vsBNuGtG68tIswZ4e/u75mWax31vh40Yxf52tgK\nCF9eM2JbjDTLtmpCFQAn7smV4jOOLAB00OuOYNwoqNTkueYh9H8OFX+WiS8a\nFUpkDUfQ+qhzfC19UvQB2iOuW4sWd6jgoyW7HnFIiDHGp4gs/n4Myv8qJ44r\nKT1S\r\n=4u8z\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDaEuq8DFRWnUGPln+qnP3Sz/8zeIxyJCTRJlPIaS/nUAiEAhwE1YLs7RVS40rASJmqK8KBSko2OM56xs5QCB5aPwGg="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.3.0_1525522348919_0.1298768417513092"},"_hasShrinkwrap":false},"0.3.2":{"name":"dana","version":"0.3.2","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"0.0.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1"},"gitHead":"ed8e50f11d38081610a0445e7ef395a8518e3e8b","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.3.2","_npmVersion":"6.0.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-IsalcQSMKks1TN7EqWoUXivhiJqbBuqe7yiq+FRtkZcRjWbaaoaApRyCqRXPL9rI0ST4DiUdbPYw4xC8l/riBw==","shasum":"0887d23b183302f6c3a58a3eecc2c40964dc174b","tarball":"https://registry.npmjs.org/dana/-/dana-0.3.2.tgz","fileCount":41,"unpackedSize":108343,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8ECkCRA9TVsSAnZWagAAmDwP/02ZyRuTEL2PjosSDDCL\nKqW9SfsAwOkvzxGCkHd0MQeaQWhraGL6wO68VAtuMsVK01v8MrhYX8BlJ+8J\nd1PwRBUJ03G5L/3r0Ocdl4daMuAXIXqQPUFYWV7VIGLsDTzuxWNeAWj8Gk5P\n7U/gI6HydEVJQ/odG58FCtRJZtenND3n5FUH7tZyrSxilIHO0wfCyRt1ujHV\nvYL+GV/USsJt1HWnChqhUUXs/DbgxmASX5qYoZ6mmgBiRaborXUpHgSQCmdU\n43q6EOSZp2HkiLaqleEbI0KrsRCpvR9796/DY6zTL33nSeqD2WuE8WCbP9df\n/en1UWXcxFNY91kSSsuLjC0+6eYMld2KUHxktdmRZy+mnLlixnn1bqU+KyTq\nw9ABheNO6Khp0a5j31kzJXWBQwRxP92GwNfqbFyBMXv4s2wSpAQGQEtkOUwg\nOonWXsh2VtEZZs9HZU7QQUxOJxVczEcGv1q0EQj40i8JVtJUF3bAhzvhH+o6\njLVFhO8Fajo+0F+C/1OcCu32we2KUy4KdIKNab86lozpsY+8BfZ5TetgpTns\nlyzxHVRi4kjN59uEusyXV4FJNqg3dEqeB4CG+m8raiseKZBGHV/moVd1kwj7\ng3H+A9ICYMnK0w7BGWYPoZ6uAgXTslT59jCwvOM0cXjMWfql9SgJUwdxRJyZ\notiS\r\n=uzJ4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHxWIySIOc3eG56q3xdsOEVmGwg+6bX3dBjBszYxzKx2AiBPwe0+/g78DMy4P3eb9Jb342a7+LHMrkxgNwwUGLkStA=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.3.2_1525694626819_0.9958636858781111"},"_hasShrinkwrap":false},"0.4.0":{"name":"dana","version":"0.4.0","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1"},"gitHead":"d22e9c2978e7bcb2fbf0c850e8f7b6cfda6fb847","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.4.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-f8jNu8EeqvS8JzP9rYMkyCEsCg41qqbfd77PHrmeEoeRCGjBUjp4fXuLt4WsoK6OaCYG51M8d6ic3KjHS+SWaw==","shasum":"db9a2199657acf22281baa8f3c380eab9806d3e1","tarball":"https://registry.npmjs.org/dana/-/dana-0.4.0.tgz","fileCount":44,"unpackedSize":110747,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9Hc7CRA9TVsSAnZWagAAfOMP/0TySLz4+2pH1n386zt0\nbMGUtKbBX2rR92ce4eZkPCLCK26x3BW7Ti0UXUX5Tzcws6O0aCJocC+/UMXu\nJLTLKS5grotIASVAu4DG6Uw9Ul8pyARbK4uFVEc3TGwdBKcUJyhXByTS2X7c\ngx8Ue44S6rKbMNiF7UaJVJYfnGBvT197vbLoio/n6wdbYbytmH7Y6imGZ0KA\n0+R93l2WtxfWcZi1pXsUlWokhG4bXZ/AlC0P3uZk/8GB1RjPOJhF+w/Uzayz\nxpS7pP7hhQ5tMlHYXOYgneSsCwrX4QfGuWhRjsMPi4KACYkKoADGnALn+iwN\nTQttliRNXsLDd++IV72daRm9LanrjxuyIaaRztnKeT5sSph6bk3GCKL7Sbr/\nYjn1EV/RAKce4TsHLhdiBHn/tA/7eVSBFaJgiCzgjPxaptX52EJPr6mtstsC\n2H7TykCzskMYoBPdGRP0t7IH1g/HNwJS+D+tJRZhi7n9oVuzvgNKwIMMzL8v\nnFQrYUw8Gm2BAu937eowq/q6/BjRNwy5vSyFO1bMR22l4SU6vEZI5mdFDch3\njRZaeqJJyYNQy6FY3EKU2Wr2VnaqRMiIZ5IRWfCBtH1UnorvKWEUG/fdTLP0\nAxzQKWUB+QLEBcSZaponC4q8N5E295V1rjpXFXr0AGim+tnboIZuVfFBW0tg\njp+x\r\n=pt0g\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5rdXS+5Wx9kzCf4HRrQBC9OeDgaoC6TKoFa1Aee8RcAIhAOVdUDdkeXhNH49sQAyWHMAt7/klmgfhhzS2ChDC+o4H"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.4.0_1525970746491_0.9751062054400434"},"_hasShrinkwrap":false},"0.4.1":{"name":"dana","version":"0.4.1","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"d42bff5be0244a9c8fa5fa6282e123b8684ac87c","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.4.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-tyggEvgPDg/GMGy8tggZP2/83ruRVhns2H6w6B6dze2liufNdHDwU3fBejzt0oqFByAyJWodw0RzBezbMCcYDg==","shasum":"0c40c889181deeb9526bf3ef04c3674c69bcc742","tarball":"https://registry.npmjs.org/dana/-/dana-0.4.1.tgz","fileCount":44,"unpackedSize":111779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9bVxCRA9TVsSAnZWagAAFLkQAISQGuG4MdprDhrxHoeC\neoEij878ON20WFg/7I8+Fm8MazGRM3zrFD/mLyHuwQ0ZZDOvPNUdRjQcJoFC\nNN1gcaoDjQMeCMfWeueiH6XL0BGS9z+D9L5r8tuOXS4vjizbu+DrmOHzJMoK\nHLAGvFQ7JecZzjYZU7a92Agxeru4YZZpd0/+w0dB4XQuEj/RtbtJzwvDchgv\nMuCiMCcz3rlRvv8UGbJMY/AtaS9j2w9PfLiKW6qHYD00zHVc/0Ri9MY8b7y7\nPW5zfmmi8Yh0I7/yFHZBSRGX1GvlesS0xFFv192ZOczeFX2EyAjcXhjNQJbH\ns5C08XxE8zQnLUnM6tnC5zogNAYrCdLaoU2oYR6NvWxZl8rjQTMwtmrHJYUg\nIs9Uue7FcNeI4uzxsKNfopzvuzKzM9CmffHPQQixOcqUj7hzSJ+GWb8GJZG8\n9mEHxHoEulbv2z4EEgl84Fxsw83x4fyT1B5ewBO+454g2lWbzvrve/EVmWWa\n2FLLyuhkSXxWsr5+CCMVb1rFXi6da9nrxV2cLhke3LhbNcoPSyAwuLNdlKH5\ng9+XEDYYvrOsqcpzDOg0g0rySgmBE2EP1q5Lf96GTrC3TJdBynXXqPbz3iGk\nNsiXhj4Xtw6mR9ogUTi9tyz201U60WQWAo+FMfdBfRVhJrwm3t7nE30Ty3xF\nreeu\r\n=z9RY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHUbe7be8rn7/MBFwmbaKyOB3zIwIbaDFlTXiDV5TxNiAiAE2NUsuplghWRLr9LiU8n6opByPLuEcrTYQGo4tj+Xcw=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.4.1_1526052207963_0.04488103272511035"},"_hasShrinkwrap":false},"0.4.2":{"name":"dana","version":"0.4.2","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha --reporter=min test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"5c7802683b450ea7869853e385ee06311a4764df","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.4.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-2UKNG1xWtLVhDyoq73qY8TQExWjVOzeCYFnvy7j714MCZKgMQUwBXzQMhEXLcZ/NPIrLJKcM1BpGAv8/bOr06g==","shasum":"bfdcbe4d23ab84dd182b4640a325f03fa83fd989","tarball":"https://registry.npmjs.org/dana/-/dana-0.4.2.tgz","fileCount":45,"unpackedSize":114819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+46/CRA9TVsSAnZWagAAWecP/0jsOVrANqYTc6N45NbS\nNGt55LlAawfQsbxVg4MkASUJ6VBqPL5rK2lfaOJzcy0OR++guiqZWeBIwy2j\nRvA02VqQ5ZgfCcMmQVvRASx0AR7A2kBYzQV3sUQEzsRu2HhgKwqkAUbQiGKx\n7E/CZDmSnoujT4Sp6tv7UrbIMAqBvu8pyV0W1/6WPY86YkDkicSwgujE+GFI\nCQ8098Fb5f7uJTy7vhn/ZSCcBx5nopqETEEUqDMCWAxTxiZD/EP1HEnzYn9S\n285baGEdETxWwvK2QTyo7MtF/487VhmLYf00VQJpMlzm5w/84mg4lMDOfeAk\neDX4wK5OWeQuiWxMivP+8v4ORVYD4WxmLNEMfVmlQz2ipgNkcEUN2k6YhTCf\n9cnFAanEDHceTwdFd9puiaREDLIAaAA4ORRTHNZBOlBMb9izoH8zDx6u8Z+c\nruxKjkkJHL8gQsLSo1TCpg7HcSLe4SglwKhMQyqWYfpq5AUBA59IwvSUkxhD\n7Kt5IassodwAjPCrSPCNKqYAtUxi/7dQqORc+/OdFFnNtlEnki2BjOwUGQIQ\nJCYSLxAwbQxHxKOyionqbFUzZrkSmm3El+CP0L/eT77ZEp+9Ha3pbVpP/WNq\nYZIaTLHZgJsx0GSnS4Tc0yrmV7+F25b4Vxukdf3L7x6luerzZ5jCblkcrXld\ni3lY\r\n=9bFS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGcMsVLuaNaG8+un0rER4UoxjKmmWdqc0tBYdIXCJy4QIgEzyabJSFQx4yGkaq3j6qQ2Pk03YwjwT2IEMH6hlXTLE="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.4.2_1526435519247_0.21117288010209423"},"_hasShrinkwrap":false},"0.4.3":{"name":"dana","version":"0.4.3","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha --reporter=min test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"10583fcedc7277a9878e629ab54b3e0d904c4f7f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.4.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-AEoo0fvEMbHeQre31OPH4GtgjFnBjGrTlA1PjnVtF3TipUrYhEbiY8JzarS7ogkqr0IQTnc42TTPIFvWk7yuRQ==","shasum":"59aac76930a583de71d680e9e7eac0bbd287287f","tarball":"https://registry.npmjs.org/dana/-/dana-0.4.3.tgz","fileCount":45,"unpackedSize":115790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/lMlCRA9TVsSAnZWagAAWfwP+wWrwBmlqbfgYvBApTD9\ns6ZIuD/Sj/7iYCG5F8wkhadsx+L65zjC38ns2+nUlxeUhPNjtENN0Q8NCp8p\nowBMa7qrSGgO+Qr8ImNBtgK5qjQkMZcyKUldARm3h2UoCSjhpeCBEQv/H9n/\nH7Rlim/MPi2emqJ9Hsak97Jg/Pq83vRoMt06DMYNOmJc008UkSBadVs6Vfdx\nR1rxNtE5ptibBsivnwKBk9SPtJvfjCVFTIFvn4h+kpLT3lTaKzM80f5uy910\nkg8uddicTstJ7lYTp6Y2sbLEvJJwUtq95R2uP3oDDzUMRRyrmQI0DBLkEAat\nj3NVQnWqpW8ivdaW8HskgRHwUEBL9zbKq4V5bE9M+7wkhbp7UdL3WwgGOs8Y\nTjfYeVfh3ZRDROSvfbxxKYq9HYtQa2W4JxiCRNasPSjlEiAoc7pRdygBGaI8\nj8SyeOKFdrNSLhIlT18NT89van3XF5t4sKx1bRm3+NjpG5Bt/FC6IWY0xlKx\nNoPwxqwoNS8Xpjyk55OdUTV5Q1wAiVnoEHtkFvccQ2isGbi4ejKTlcomDyRw\nJ7ZXHK2DaBZb7YvsjkuAUMeQ34wJsV2BPlvd/MAfJn24FHEOXIu57D53310N\na1zKObGaiuK3GD3MJC/Hp9t/TzXXKHY7naP7LSC/GRT6kpqu96f4+8cseUiM\n7xic\r\n=KqYV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAsrOnF2Az4oQqGjEtGWZqacxbzJfKHmRzxcqMoBH3NAIgVpFGHeSSsBCLUuleY2+JkKJOMrUizR4d8FO+qhduVDU="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.4.3_1526616869015_0.5611077205114379"},"_hasShrinkwrap":false},"0.5.0":{"name":"dana","version":"0.5.0","description":"A simple migration library and CLI app","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test:unit":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha --reporter=min test/unit/*","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"b405fa68b82a7b12b0c5fe1ccaf634e34cb8c066","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-jLEGKDJBO05LwevqhkvwoBU+qRAwg389Q7tAO6SSZS42zebYWUrPnsXGnTJhQ/S2+aCYvCPidGvCnfYZ7yWDDw==","shasum":"1839d753614b3e9b988b7a74f38ba729bacbdeb2","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.0.tgz","fileCount":44,"unpackedSize":114746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/sCKCRA9TVsSAnZWagAAEHAQAIhtMfPAPkwcV8OSEH04\ngp94mjuN5Rm6sPSHG9y4rLi6qdtn/x6kNgtqMgvuu17b0gHJCiS/wanGQ+Tk\nljEwLRe6IUpKpS5+Us6lv3sjxF35Yw1NM64TU5cP5Yeq3O82YiqPiI9bblp4\nMvZAO+f8tHGBa1qYOP9D55c/D8nNVLjqSjeEp/51ltF44+CPFoaJqXNNdHV0\n0eUYsdlGsNLONXsvgFGiHS60VhwIvOrwKVYV8JkTMGpnqOE8Y/V/xJWSLQNB\nTvgahFhjUjX0J5iWf09R0hUGGhxBnr09UDN8RY82UhBdFR1YOrzuvO/sn3pz\nRJA5DlAnSHSzE6C8d/kBkKm8bNrzjx5YFuOnNVIETunijiDojP0PsfkBLnYL\nxQGlDDiLme2KzK5zMvTRsIA+NIsXcVVEG6D0zDAoeJZaqoRoKcjGeaErDwA4\nWQ02NNzeRGM9ohI9Y9kkVSoUlSAmSrbKnHxZVW5598o5WS/V8IlSIS7CN+Ce\nerPf8zZ18pbR22Ci1NHb+8UcrZ2k7chEZAXar+vm/fuU4AfqrIfWKxxfXEY6\nphGcoOvMO6ip4pZsUpLeQvBTPzkVBP+rY1rdnjlqRfAzZzoUa4TWmyZDrVeq\nbfAP0IYK4LIMKDh7hcWietn7n5+r8v6kAHjw1yX72O1PrjI0tR5HXqr36x0m\n20rC\r\n=dl/X\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUsszH6TW9fW2pcHafZP8MtjgXb7Ry4ZdqjSWw5LZc4gIhAKP9HFXQ8mP/q+i+REaG4jJl9+YIcAaxpFdBhWN2ZZAB"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.0_1526644873409_0.5844730499476616"},"_hasShrinkwrap":false},"0.5.2":{"name":"dana","version":"0.5.2","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"37d01a8d3bfab0dfd1bb235fe351a2b62e2b3e6f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-cATxvdZXVroIwnUtgL9kx0QKcES7B0eZpJi2Ux+m9WX57XcXG/2Yq+paWXD4ffy+ko97vOiDVV/d3NNX4AUcmQ==","shasum":"ade7638b6935d606b464b07084ca997d9ce14158","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.2.tgz","fileCount":45,"unpackedSize":115335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/3UlCRA9TVsSAnZWagAAVdQP/Rz4LS8E0kckDhZ6fEsJ\nisYrs+PCVvhkuE/QYPpBtl62Y7kT/onYUe3zRzepZOX2ZAYjFoCpEdWc1B02\nXFfN5s34Pc01L7cV2ao5rnZyZkqqt1GVxJHg8zMilrUbWmoGAGfgQOSm9B+z\nF5BvOzvO5F9D3abpMHkmfco/5C1HiCS2L6nTSYkkoElvfGvME4ExABZQh7Re\nnemqzO+l82ehAZTRXswdlAmgA9ppiOBk1NDsDMOEMuVh9yXA9AXS5Gv5vC0I\nlFEDTSan7OcQYw03ECy7ovKpgJZlkW0S2nTGxHvz4tp7YPZjviZD4osRtDXs\nCp2Fjm24tGS3Jd0kNfPzYLXQRC/H1GMnpzU1tqRzaQrzww5qZCzQDVsdgm3j\nOyl4tB3m2vf2U1d37GHTEjOPPjV4xFRQb4HsRBDouRxL5gzXoWhcdMRwQMsG\n8mJmEea6kRRB2QLmN7X41LS3FzfVlPC/XIES0fXPvbCwOi5JJbzmWUSrL84I\nICkysHf1GUls+tmJEThCGhqV3GLSCIKduCHRC5JbXMHy10zjC7NZgAhvw9l9\nUOWyO8DvREqfkQJS7xhfrhfS77XR0q6pr+9MZrq8pNWUpUqavxDVgmkLb0Mc\ns0i5Off2kSGKBga0cKghb4i7G5XI+QMdR3Ihyui7VJ26bX5iTBN3nWikBMWo\nX8sh\r\n=iTE0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZVc5uVOEIYw8nTtB7KL70eQmhcedADxoQRZ2t42VnyAiBZwrSvf65ju/uhNxdf/lX0xaEnnyWj/5bcad/NQ9Pzyw=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.2_1526691108827_0.2929269635490692"},"_hasShrinkwrap":false},"0.5.4":{"name":"dana","version":"0.5.4","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"f7bdb8634556abf68471f5621c08300f8695006e","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-OwwrXik/GR+BVXR9jzHzhjfEIsH+oT6N6bXgHjsUmiKmN383qKPzMCLhsdn48Js3N77FypE5o7UiQQ/atwBsnA==","shasum":"04c0fafc0a8590417ee8972546a659654a1180bb","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.4.tgz","fileCount":45,"unpackedSize":115273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAR2fCRA9TVsSAnZWagAAmM4P/iKfZt9lK1VjJ9D4tNTE\n2tcGSm5HMVUDgPyi/LNIBJTVgKXzJJSgXp3miw59GZaKaYQX1WWBdwJxp2LO\ncPqCUhoRbTStKDy9H0VMt6SByp2LVOLRj5hoH6Lel8SSPVPBgVWF0S3Yko+i\nmv2egP7KX44WYfq1EIAJC5H5vfcr2nGDO5c3WFMmK5r/6PWLgv4zRQQg3pL4\nT/D3YFh0qg8evuNTfYRvmlMNO6KT4FpPqjVsrjnKmiI7qz2N4QnoM4mIUTwC\nwuD7yFuYF2CeyBiNXxpa0AqQeq0MoHzCHjY7GW9vAqVGUgDmT8Wo+8DSbO2z\nPldWZqCNmnET/pNgt0fVQzzPcW6o+nM4+Nf2OpW429oRXr06ypfLvVFWr6nw\naVM1DE4los/SSF+OPWVegzTfk2E+/bidD6uMHa/JJ3M95wIZyxZN2cPjffN6\nWFjp4a7iupWLE/7SIIYOvD2HcIfFvLKSOJUtvRdSERvEczCq8AZnV24y203a\nD5eL8O0Y1cjBsF7/jnBg3yQkRrD3nGWXd2nGl91rPXciBhJh14WTBrhhIMYs\nYm/wdJexx9coDYiWh8nrrKGA+DDPqCnZM5lRMHH9Zg+hPW1hWaWzTgIpEyg3\nEf44ub9AwvLSqIf6/LW0yESSuxta4pRqBEIHVhqSxWsyNHlG2cIYxQQU8fEp\nxrqe\r\n=4cx3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQw3LD0dMhGcEZXE8UDD6C0RTHaaFW0IUwE3y2/LT9PgIhAJydnFAJQKZXbPmc9aLAWxWLZVHrkHzeXUTkyjocjpiN"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.4_1526799773787_0.7087529930646093"},"_hasShrinkwrap":false},"0.5.6":{"name":"dana","version":"0.5.6","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"9c37d08b64c96f5fd458a74804f5c06632f378df","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.6","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-mXHBgAE/4A+af72UQ5UsH1vRKjZvgMtvPlNJktO6YpgEM4134l/mEx4Ziuc8eb0uN3EviUoHB1TRu4BQ9wZPUA==","shasum":"2e1314e7c7670409e0fe9753e87b57a0248f5d51","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.6.tgz","fileCount":45,"unpackedSize":115440,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbATPzCRA9TVsSAnZWagAARQsP/3HVzvzHjhhULfV74wUf\n5VXo139xqiGC0x8TKjcBFpp7mgCcyqvn5c6d0hW+sTjmr6VOz1A/QRP13+ho\nMrj+17EoNdCGbD3wAgCptNN6v3NZuEBesKBuwdLb1YDUIQkQ3KZa4VojRL+z\njBXlqSwchHhCGFQAFbE0JEmE6gBSiVfcF9WFCYy/uYwe38cWEAsV/pPPlVYl\nDx10aVoLVZEs3JXYYDMDqBslCPgIOFvA32r0myDcf7TEZjbrx+q9NGIOMe0b\n4SbCX6EXDz21F9k5BC8VwEsSQq8TJb28R7dDhdC2PnlZQrEcw5cognAKivd9\n9vBQ5FI5YL3dzds0svrptk4UOBBJ6tDiklBRcO33ScLmpUSVc+VdpcQvfMZv\nsJT5Qx/E/laf0Dhr0L/go7SQYunkh1798XTBMCXne0fi1THtkZ4yK0+RVFVv\nOewpcDovL8YxLVVlBXEWsuOc7/7vwl3w6syibbftGL5c0Ix5/u3lYwhNtLM6\nDK8T+LGHT6getPy0AP+bi8c1cpNkgOLUDZS5bM0k7yh6v3uq7DQl9Ha7x0ua\n1zDOzoecrvZoPQthgtqm5bunzRJ5sFXEt6SGRhiTCLYoK/O7TGnLtdWAZ/Ge\nS4ruD6qvkaAiolEnBoutvWry4dahAv3HJLstosQ+kZSTu5/NaJru47sTpc8Z\nQJbc\r\n=dMGf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRADZHHhbJ6gWllqvK+FoVfgVOc/16ok8MvY0teTYH2QIhAJ03pWJUvPvADZeNAK9aslQi8I+Brb7wxb4Djnzh+/QQ"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.6_1526805489653_0.2338852991660787"},"_hasShrinkwrap":false},"0.5.7":{"name":"dana","version":"0.5.7","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"900283a24dc4eae1ebb55b2626377ad22f1bd7f7","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.7","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-KtpsKixrPky22HxVC80KLD1wT1VOY/BhX2nRNoc1vuR6ucUZDUOBHeQ0SsfQWEOWuOJF91CPKeVDO1ZeDDG4Mw==","shasum":"5979759026e758841799b7c0f5ce5c2bec664d9e","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.7.tgz","fileCount":45,"unpackedSize":115883,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAWhkCRA9TVsSAnZWagAAuAMP/iKbk90ItNGy3eK728w+\naXyf0xI7Vk+0zLdQHL72/iud2IZBL3Swe6Zd6QJRrbZHW4cSHZCcLOfpUTM4\naKpWuVySuAoKWqy5f25i8XhQAqWyoy89li8EaeB4uhzBqenrGJAR4gODk5I1\nFnvGHgX1u0q4m7FllhOacjHd7Zm3YGNXFTznjpEda+kzzoFtEdlo8sxy1L+x\n/QXKTU6yVlFrQ5hwM5ZgkCadpU7oeoGgBfX0FJnYh4YizDNux0gWAJwjtqLG\nkwwFZPJ1x6wBvTb0d/rVdVo+QC9lobRxh29DcpcGKWUFE5NcinPea2mKHzK5\nmPphqMpmzxplQbTX7mJyNhBeQpjDS6sCju1OBjh0J1dXhHAWDP0wkQNlPq7g\nXylWiQcXPawcS9Ddk/AFUC+zxV58hKpgzDFt4QXYX1vRDBhn1G4Uy5qWJoKj\nOn6zW6AMIhbW8m8+wR+FkQJzovLWODvadKnh3PoFI4zWRbwdJjRtaN1T42y9\nTjfm3M7+1efB406YR1C0NOmwu5joIPCTEA7YFKXiXsXld2tG6NqUTqNu4zED\nMMSJiiov/RGoO8ijrchCWtotJ0BJB+vkMb2/WGDkn4bGcx296dQdelmFaTVb\nuAcKOnftDInPdWTCyn9rEuvq5YiXXw6km09IfsMGppX2bOA1uhHEm9QGQSS4\nzbD1\r\n=6x8K\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXIsx3sO4uXnxoATDdVZdbUG/l+o/NLAjCg1stlhZQqAIhAOgrirBoJvbqLeV5Y72cvLBJS9LRAhiDiR4csdScAdOv"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.7_1526818915115_0.5551699920718765"},"_hasShrinkwrap":false},"0.5.8":{"name":"dana","version":"0.5.8","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"256fd9526587223a590eb1999591cdbae0e5b2ad","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.8","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-bhpDwwQ5e08JYbb5SIVoLHO8aYYdMh2tgKZ01qccGd9P6TD7s5mGzjeZSALZmkJ+sUqdIg3HWxTqUPPqaUaoPA==","shasum":"aa21223f1baacb9b019ff14df24ec386c9aea449","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.8.tgz","fileCount":46,"unpackedSize":115931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAWpOCRA9TVsSAnZWagAA/ZAP/0zlyGUjPwvbYMPwLiXg\nLM8Z7Ths+MQwxcWGG0faqxTx85S5e8yJLH4oowQ+to9bZLzJ2jYA/A9g4/Md\nnJyRWx3uaJHrDdcKQoJP/zVENKqPZk6fD3vsBOovI2AZnEa1vZjpK6uyl/Dt\nHL+MFzdYllZNUw1iUfFlrfS8cX3yw2DUMIrD/afu2IxcN0bIpH56kEgh4D9b\nplbupTWf4HGgRQj8B/Cd37k6R5GbvoLCjjPa+H3YiAP36U702wOTu9AZUYx4\nWd9sAtoYC/hPDnA8cFtK4OKiva80CKc8N+RDodQm0cSHcWDjHX+N22to6aA6\nwynRxZ4JOGeJYOpoDnXtrgYuUegDitOhh09ZoNRngH2XJbQchdVYYvIYx13T\nfzASlmCQ5fWxdeAZuGcSqzVUildsaHC9P9m8iR4bUdjy+WeIOWs0uL8aynEi\nOlYK1nzwZq6auW4cBgUI4dRHSa6xi62c516kNTGlc0GsJRG526pUT/tK7hz5\nlYwJ38cGTGSFV3wNr50ugqRAB0haz+5bFMN7g1ClsdBp6Ptesgo1Hb8Q26UC\n0XlfYKA5N51GDqtwHXhdJCGOOT5S+mHVLwZSypP7H7mMHh7fuNCFcp1egMDt\nC7poAvlvXTnXT0te8AmFOa/OXNLdlUq31DdiAUrPytk3HLxB0j5ebbw1S+X5\nSClW\r\n=p3di\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZwBbgnEUjIA+MYZCxc+1trDortvNie/yO+K329n/zxwIhAPVwxoYOvDFWWfYDeRPHK4hcOaxQnE3eAs/awxgL6Rn6"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.8_1526819405749_0.3466953619271269"},"_hasShrinkwrap":false},"0.5.9":{"name":"dana","version":"0.5.9","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"0f6ee3bb12169f0fc0cdbd9b108d64fd392a827f","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.5.9","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-71iUPZeLHd/QbREP0fNeYOWNeV51djIBfElgC62jJ+8WqIb89yKqCZ3JK90aQnninkG8uvegmBQ/0yBIVQMTSQ==","shasum":"de81861f509c612e9627de0b0b37c42598d8eacb","tarball":"https://registry.npmjs.org/dana/-/dana-0.5.9.tgz","fileCount":46,"unpackedSize":115923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAmSJCRA9TVsSAnZWagAAuQ0P/0GYHWv7dIJR2vI+gxOQ\nr/TWBd+J1N5c92JWbIbhyuVym8rUmAggdi9qtY6huNsQrA6v0qyBhzYowWi8\nX9SNB9D/NIs0f25P6htArljqG7IerNqEyUS7Y07l9qFv9/Xkf0rJZTqqKoUP\n0YMU1FucXbw0SFu/4oJxFRLhCKLJ2NXNvwJbLoEnFfaF+RyNU6nnmm2X4+x9\n3Ucw9CrQtG1u/8YE2jULONSRjmCxQc9NCo+VQuBt7jmEMSCCLlfQm3asSg9U\n9E3q6uZiy0BRpDQr3QQmjLXDLRBXvY69Z4fSilP1A3qho+4kHm+n9w88fOJi\nskOrB3EZuCyKmyDYBPHKdj6XeWougvjEsmaW3Jtff33umCbKkwla6KcoCutF\ndgFv4uCiXtMyjnWfOw9MJhhjfJu4ov9b9/GiKGhj9A9iITD/IuzrDWlwPY2E\n5aeVK17yrAzdEBqUHXs8/b/7fVHa7kzFJTewYvJ1kvLma7WJtylfID9Zl3PT\nUvdX3eRilft3o7wqlJIyhjGyqARpnxfx4MMpI6IITtWikDXN8JZpYMI2/VOq\nQ2/C7/OSOM9mI3Eld/mNg77C3WnnloZSY2DE1ibWO+WHyH3hVF3uLHwD0SbO\nedxc9zvf9L5j1ffemaMVJNCfH9dntyRj/fDskgYmUYXsg75hxIEI71zX+b2U\nMkxZ\r\n=LOh8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHPq0NwoV+QCI0BYLtEEKGW4fq6zD6oIfYqr9RctPL3zAiB47hPUEdY9DkXkxdy3mDjkME23wrLtkAd/z/qrrk13Cg=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.5.9_1526883464975_0.2863384934328834"},"_hasShrinkwrap":false},"0.6.0":{"name":"dana","version":"0.6.0","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"e6c28c7129a1ef5580801a0d12736d349b4ae939","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-5k8Rjq+mZyb8QcJZ/2suXqkfNzs9+lJ3IVBv+oPbFf2DOoMQsssh3klOCguGKw+aQraaGHsdRemVPhsmuza3/w==","shasum":"80b84f7194fcbcc8b434f4b3832e7ce5a3edca25","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.0.tgz","fileCount":46,"unpackedSize":116255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA8hSCRA9TVsSAnZWagAAN0MP/2aMJRRa6d9C1LcAb1JK\n4DduY2L448FdrDZLBpSEA94TV2kyVJqNDyCa+DAcYUakcEAZzYlyR7R7pIeW\njSDp/DLhUTxMJkp/v2JDSEfoXbOWLL9jnZO8ABCVaO0MaSvnPjC8eGCx6E6M\nOqFiULN75zVqCgoEtVJjzScFuQjFapNAIBvM0NhhVOwZ59wd2ZhDHwsEY3+f\nfO126pmU9LKsqiZokwgn0D9mNCPQYWos60WsAZejRF/ItGy2utBiz32+80OW\n9czjKcVXk7omWN4OSVQJFG0jpUdQpqd/DT34xQMvXms78UA1ihIN5e8hKFuZ\nyFnBT4vFMWAEaTeJmlHzD7Hff0bpb4T8TwqqiLPydNVlxSyeORei/tgzEjkE\nyQnszeAwx/JIPlol97flfKWESuHT7hd3Q+XvZjcNJggijqFH0BUAZB1p1LgR\nSql1hVDQpB5VGUWOrIungosHsd4kKJJkl1tyzxs+L0P9AZh1HrPzdkLuqupU\n26qzLUek6cC2FSgI+yOIne1AiQoMlhA+3LRtZy/Bq3B/d823mj2WXswd4Fvx\nnAA5KhB5tYkO7WXNlzCquGL2HoUcrqQAxFZ1x9yg93WrgFI9/B8Y/0udCXQU\nOY6egFM0E7H5vzzkAw25h7+gz0M5mvMX4PcsxTkDDGGcAb/W0HT18mxnX7W2\nflm9\r\n=Fkwh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCpNyNgMxxF68FiI+BLYvEF7XXIpCL7ph3HU6s3xOUx5AIhANJneGrYsEqmtRcnb5c82TO6Uw+ABzZHzyZlcaac4zYz"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.0_1526974545548_0.055596817305682666"},"_hasShrinkwrap":false},"0.6.2":{"name":"dana","version":"0.6.2","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"8b9276017a0af7ae779581067fc4703551b55add","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-anYho9bpOU1OqmfkuXvYq//lHjnCBR+MuDCNsH1P0OPTIs2P+Juee/jMaRahpC/UaHvRGhaR1MeahoNHlBYZ+g==","shasum":"3907bc389b647731b74b5a5ebb92480cd7dbb6ce","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.2.tgz","fileCount":46,"unpackedSize":116483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBGe5CRA9TVsSAnZWagAAdUUP/1tSsVtOQTGZZ9Msrby5\nypxN/MEZ5qaF4jbmAqjy8f2b9o+4wFgEvdxG5y8xAsbX23eSi4ml5iIZRLvo\n3pzVPAxvb5qIFlvVrF5wTcUzW/uGLluqUPmdFiJNFs7FyUkiQakBJIKXl3ge\niJ2TNQ9gowLpZYl5hpTn53GH3aj7d4ZiwtMzpD4oHrEqGrpw+3PV97ohlkQW\nR5/UXkNs4D5mVAfSmcTX2+Jzwaln2tM2Urk/cH8JlOrW/c4VAGA10xgq7hR+\n/euORhuvzuVvjGqhG7Mt5RLbS7suneGr9W53QZj617wHx23KrCwgrqc3trKX\njwTyXIFwyrlp2vfkjO7J2SApq14FJZB4rpQaLzx6SETmC70xtkfQagEX34h3\nkccIDybT2Bn9DTSPrpu5kPCRYcMowswXbQg+WetqLX4zKoO6Qer2vZ2/hTQe\nvYNH5lp25MJBO5vJLWHyyr6YpgoCYhEwBnG2U2fRboFT/zcz1BaOLd11EFCC\nZmEvRqGvzK+tzgRymimCxp7EiOCFunL0ONSa6gDCRPzcLKduCjnu/alLpUTW\noTWUKcHPQoKsAUkAnc2kN9bbnLPu3cAwAbbYRfIs+ZRrZKfFjC8UndhlvCO6\nEaTLmnusbNEIdrLMEbKASfQ2O+v0vH7Bv6XeDFKf5YV46ZAYOmKrotPKmBZ4\nFto6\r\n=+z6M\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDomW3iVo/konSX4KxS7llBxXz4MWii5C+kNv8WZmRPYQIgWVgdWZHZIalp0mxyGS2lLZJksoRoJDF0Pt+2PWy4eJY="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.2_1527015353286_0.9859557139271551"},"_hasShrinkwrap":false},"0.6.4":{"name":"dana","version":"0.6.4","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"f6b3c74cd40e9b5b271b4bd917ab50ae9e819d2e","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-slLTLqlRrn6XERSdbDzOq7nSAD8JWVx0KmbB8tlGtM8uDt64w/+PqMTQ2cJeX85xrev3O3bIFVQMgyls8GOS0g==","shasum":"621076bf329d46cc7e833075aa62c234d7aeb671","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.4.tgz","fileCount":46,"unpackedSize":116523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBRY3CRA9TVsSAnZWagAAvwcP/Awweq777jaM/N4j7hF6\npXQYInLjopGALrhk92edXUvElwtST8No9sG7o+12YiS+tpMsB6GVL7xVdkBx\nnNQEABIk5GkbNr+c5Eu5RYoinLDBmH/JFAiJqkBagBHDm/niBl6nMxkSZCRQ\nuS8fRImqRgcUe9qViqUL8ELiuKjwFvJFl+ICnLEFVs4X3hcXt98PSTcKjFOn\nBIYiUd8PEc2tjvB+uXB43eeiS7SPIu3gp/NDIqZiqrkdE5UUcsI1e2tcrGSb\nA6t2aNri4fZ82H1Dw+X3LE8Pqtxj3BEwk1x80qR+gHSPIJJki0gc6zWaUeDp\nWhIXRtp2mwfOGsLrPiTe2CixL8QEUL9wlXFDb6LDLX6wy01m2VUVW13pBarE\nj7Dd/wOcTB7jqmlVCyLj6m/GlugadQWTrPBbY3jO1YchFK38avm/06udheRa\nzkR+nBkR9gSLHhrjt5yvFPZwodQdNSeuHftJXbCJ1FfkaDJrNYsFEmOUnDWj\nzWE2BRbkiD6k1cHJBLM1CHzl0npeX8E7YKS+g/V3L0MfZPTVRxCAHE9L3PZw\nu90auBEmFuncfi5mfY0LJAPJsBHvvo/YOr1hQ1LuSWC7Fn+wtp0czewxZqcD\nWI5ipNqxnJ4wSIrrP51z7fRqaWgqq5Le2Lti1DhbUkF726b/Br9yCcY8JAJB\navTv\r\n=sU69\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXe6lSir5MjZl4mOMaQoDXPF87m0dYvPuVKEBZtZkEwwIgRZs+YOa+pYrHvXhjBY074Ugq9cCgCyIs5hfvwTuXdi0="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.4_1527060023215_0.588028502400952"},"_hasShrinkwrap":false},"0.6.6":{"name":"dana","version":"0.6.6","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"c09804b47f1ee313eec940a3c041fc278e84e2df","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.6","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-O0inrw1s7X7bTXN/NGPZvZsUN0U6UwLk1W779aLuaZ+kb8/d/szl//90SlIwKXvWZUeG98NhddiTphwZjgSp5Q==","shasum":"7525a9c181f3b5fa31ee666c218a3b7ddfc4cb7e","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.6.tgz","fileCount":46,"unpackedSize":116625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBW3DCRA9TVsSAnZWagAAqVgQAKDhl1YrXnNAqqSftjfy\nMFFOWNWz87VP987KJDjDDQUiAvjJvPNDmMBg/3aD0sJVtO0S7VJIKTxl6OTm\nr6I8L1uitL/7ILGLOIzmxkFZKkgJFGCcA3Oi9fsPUrYmPAuxAIvsEv7AecBW\nZTVejDs8oBGmCWOF80l1xYd5FnlkLUsR6+lViJioA2q+JRIWcY1hXlRKsNYV\nOVhr6BwJKKAqGYBh52usbWvhusYDGgvTVKe53jMaOZaI0uLYvLK8bLtJRCiQ\nPPk+tfpF87AnUmKrHX+NmudXZ/zs5qcz3vOgJhONSidXLbSI/pYVOzjRc1FK\n2apXc/FDZgDNaasTrBAyMlDcHiqMq9DJovP1lyEkM4yF2TJwO1qBKy3x58/B\nTR8YC2g5D4eKGFHGHYC176hwuoLb+DsflKhJstlZ/gBAQ1ETToYj/waADURc\nWhii0bIuQYFYscGF26iQS76xkuSt6iHhV6a8Bynvg/p8YaMbnDiph/EnyJYH\nZvn8AnS3hgk+itE1f7H8Wl/kWYRlz4WtlU9grnc/vr8gjxca5D9zKh7w8KiO\nwG1m4ZyfKkdg24pUGXQEyQyJ2/4MfUElwAaaDUd8FQ0ow91MgMJieyt0gok+\n2hyNAetumyUjnR9GuTIY/zpyhii7UblRZn3iwpf+bNxSxCESzbUwFg9knZVa\nQ5/D\r\n=HUR7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8AbTvCENc6FxEANsl6k6Wozr9rRMAMx7iDZQu7HgwwQIgahubiD99/ZNDsBwIIv1nDhP6Ib3GDHccv4oB7XS1Gs8="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.6_1527082433913_0.44528232362266174"},"_hasShrinkwrap":false},"0.6.7":{"name":"dana","version":"0.6.7","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"3509991f7679441eb3ada96707754ee20f492eba","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.7","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-OcIAvu2RfKdg3Ew0A79hY6aWbis5/Gip7HE4j03E3p4FZ2lCyveA80CSC6586qx5DQI0YhL9g0jgMBpSB+5tlw==","shasum":"66c3ff477fceb3c3f0eb91a04a0f71ed90bd6f34","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.7.tgz","fileCount":46,"unpackedSize":117994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCBw2CRA9TVsSAnZWagAA95UP/RFP31+whcCDZTA7XbV4\nnqzVqfBcAS/ekulSulZErWUaFeyRl4Mb2GH+pl+IM3KXdpjZmaha4QSynO76\nwdQ5P/A+3K1ILRWZjKUYnUds6nmMOQuQ1yW6O03Wiapg4tbpL+mWhq91sqf/\n7+SPjfk+9EO2gORg22kuuM++DCA6pH+Y86uxTnFO5d+ig0MQE8vWA9D/tbyg\n80AhPoT/wh++nLV+wWRBQkYUzXaSMANkqIOmaWS0bnn2IoSZ3w7fzMPNod0Z\ntr9I78CVIqkmlF/ViT+f14/YzxtgyXDrno/4Za7PWE9BeMfrk9SP0pVnInTY\nNRzeKGHgJor1Z5NB9RqioHD9Sy7o7O7WBinRa0N7tDPWTRgpUhjb8DzYcGe5\nEGVvij4bFUgVG2kS1BFtTj1jnSoqRdCBQo6fYTlVo0AQ956H918emvshASpN\nSJ749oQj4aZuNsq8TE4IRtkzKAOHqfFrRTRyE17tA/ZsOMwiaP0n0b/yjins\njp/zGj0WlkUEPWu4kRc5DJ7iH48dW8moye6aGLq369X6zqlLsfPhbCR1+J2t\n92YG5rPos/JXtYlFB7hAbTaxGEEODZZXwad5SEC87zl1nxfEKlWv6iijYOaS\nNb28Gw2mdQ7iI9nZOF5Q7baWqyzya9AoHjsy74hPqyNvUs7Y+hS5Uueo8UXP\n4ObG\r\n=Xg1v\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID1z3y58l+O2TB0fM+LrM3cRYCMGw+gTaFPXx2P6TibgAiEAkwYI/2wpXctf54C38SVNQNQVfuFD24djHWaf8Snz8F8="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.7_1527258164833_0.24138482892602386"},"_hasShrinkwrap":false},"0.6.8":{"name":"dana","version":"0.6.8","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"3fda1afc64099e7102806ef3eaffcf44efd22e26","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.6.8","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-z9WcNeKBe3IySBzdGPj+huJZu0RmGriUrZgVpdlo9bfyWje+y8MnznbZatcsGiFmR0KfbThIZd06sVYdNPRyig==","shasum":"18ae1eb584b340ba5f57f8c486c69bed04fc6088","tarball":"https://registry.npmjs.org/dana/-/dana-0.6.8.tgz","fileCount":46,"unpackedSize":118885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCTYSCRA9TVsSAnZWagAAhzoQAIJKDHldb5Srqr36mfL6\nxtWuAWRKTfWuJ/p8AqeLg1TJg2wl/i5O2qxBjPSzC/7BKZePKNrOF2nBnUIl\nr+Pl3rnNNLeyMpbBSixaf4FX/0ijRo04x9PSc3BkMXVok4q8jcKeyvJSlh6+\nm9GW7e/iIIffPv5QlnFIWJz5M4m5bkF08cCbOSI8fGIxp6YSLZQKQ4SlWvO3\nk2X9qKBCQ3kIysWWXVPGWl1ajQmmaBZeCoJv6ZyQzoWNYY2ifva5Q3uxYTlh\nMYtIPmZdb70QHIQNpGiBABJDQlzurHu933GwQRmUZiX+8VZ6Vu4mCJIsTdUA\n5LkigSLPwmZ+PSRBobHGOIXJk+mDMGpjwO+xYRxLr4pNdv29ut/hPnERU45z\nYRIVZKCo7mkj01Syfy3g6pgDAfsnytklb3FFlO1aHVIVNM+h6fcc+6/4C94A\n8TTABR2VfszXUCXT/0yuwaG5u+5sYnV2MdkmcNbFnxSha7J3qzRoNODAzKG/\n3KcZTtmJWfCsEpbWP38L2M/fn5qwNOt+pOSEcrh6TactLU4rtnFqp3QNq01r\n4mmi9AK+w4+A+JQQmtdUVhhjQkXfGlSJdC3mUfmehmdSqIqwFj6mzUbdtEnt\noTnO3PYpKrvI0boJLlStUwAfdlSdlKAN5vfHsXPE1o4Ab0yeXqYAmhfQHdKa\ns80U\r\n=6ksR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbhZ5WhMDtBSEtKrPCKwJo+6fqeSQvBr8M6bMoAXirQwIgDrMNB6Z5owG8DXpRj9VRvCWfFzcbvrkPDtn/gKciCmA="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.6.8_1527330321233_0.09202337205711264"},"_hasShrinkwrap":false},"0.7.0":{"name":"dana","version":"0.7.0","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"882d5932e14e03c37134826d94e6a0ea49cb32bd","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.7.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-QJ7cZVL41F9Yu+BB4t2HLIzojJx9x7XIG8QYcdVCD35p46PsJ4TL7UDqYye+7WonuS3mawdGV5l9P/MeO9355w==","shasum":"7dbd0f07f5d4b76f070b737f6c1cd4ded1efd9dd","tarball":"https://registry.npmjs.org/dana/-/dana-0.7.0.tgz","fileCount":46,"unpackedSize":126116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCw0SCRA9TVsSAnZWagAA0gUP/29RURs7IhYzxYTOoHMT\n7htBsxPQ6CQRtn2L7ohJP+SlvMk/1bhV+MJhUFpBzwMmO8ooAu8Uh1An395R\nbIBB0lW+0mDnKrwQ+2vkyuHmN0fXhJBOfm5qnWzTtdJHkg4RTlNBalIDGltC\noZBk5cDdbLqxym9xafpVlAJ8DEABvEXTXhhP22FKSkoV+dx61utwKMjKKwxa\n82kCHM/byTvjyBMDmmOtIa3EPCCPY8EI/CBwvmTZnZIAcr4A39hlRmGodQ1x\nRT3/Cym62PNxckulJZse0JiN3MbnbJzrCUbSkQxS9WYQwB/Zbb7Kq46AF/pL\n50e874S8mru6NL+LuZTh42/WXyoeMbx7WD7PIlE1mzwMdHHhzt49src/7WdJ\n1WfvsRdFZqjc/iy1KJDtpWSAjLqdV+1EpukWD2dEtkTFpxn4Z4qDrrNETX+7\nW5JBPhzry8HpSS6/j2deQP8zT+cy+7546KyLbY+9cGT8c9l1NNM6aJ6E6aYE\nqD+Pz4zGFKS573S+klTEESTn2brZIBUN84tJf/sxDN973oR6ORN0nS0EV/Pw\nBOlMc2/q4jYS02PYVh1DvPwFOtOODnNoaks+0NgeL7Lh98jF3avy+rr96TTk\n3drXRbuPPcG1O3BRpsFWa4M1tRCIoje7+wupCrwaujKhyFEWLRVGdOitjBQN\na/WR\r\n=EOLX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7EC6V0hPZUliRvGfRxmMnmH3cDPiLI4rKA0IgGQ3h2QIgeL+2lZqBjkZ9v+FCO0AIreL2SibPJeZrGTDLKy+RfQ4="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.7.0_1527450897433_0.9166872584407608"},"_hasShrinkwrap":false},"0.7.1":{"name":"dana","version":"0.7.1","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"5450547eb45b914c2367ec57698195fc13a1b1dd","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.7.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-XLOsSaOOpAKvkXJjN32wdqEjJZZ1CbDmKgs3TX0Yhn81LE9ceie0kz7RQmTd+xcVwFsAc8h53vC+DoukDHhIeQ==","shasum":"4d719b188f4b43c412dbe6e7ac7ac6d2bec0f18f","tarball":"https://registry.npmjs.org/dana/-/dana-0.7.1.tgz","fileCount":46,"unpackedSize":126068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCw35CRA9TVsSAnZWagAAduQP/iRyToaI5CfkLmUTOOHz\nnALELdqy2+n54tN3Xe/NvDV16yMXzElZXbreQyjx+x2aoznDujIxVck3apsE\n+IoFkLSAv3ctEShvaRfdLI0T3uRB4ycRICASkvF7W8Rz3Z1DikkogjMgtVcN\nI2R7JXF9C63W5o5ZCZkZYliA+18sTg6UMQqKPAtijkDok92VgmYe7rgF1bte\nwD6zB75KSOhJiVb2z1tsb/MpUEuguZqBkd2YJ0uTaKH2FUstGGloMHHi2jsX\nt/N+0kchhx9khEmrwokAq3qnUBcUi0/vEpKwq+iI+1f5xAEtgxoWo7/GYR4f\nhIJL+CuyVEiHbyV59QK3Yky4iyA9BIhv1MaC642HiQBf/M69g1MArCHIEarW\nysBZB5WS37Cgk+YDimVqAz4X+Pc+NAWzUQ9Ynjh9eMDXiQ5ogsrobPwmSCsV\nM7NPIlMghIQUslS1gtyOSNBmpSsXwyQ48ufYeAAYqBdScXut204GrJ+G21uO\nKvoRILJrStl1NndGfkh08pgqEeK3BDzt3bH+in7jHTDyC1JLDQUR4BMSBZkN\nn6ekcaCSd18kiOBH+b6nDcbYv3mBM/dv1o0Sli1LUlJGQgYZL5gc5CSHAMkJ\n5dW3z0e0kaiwYhE9ca7kJjPNohJXGxTt/2CYvgndT+cZRplto7hRDxc8+7zP\nFYIO\r\n=LSCI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIByuB6l7uaW1PqIU62bKCh89IQdHDbcfLJwdXWkH1I11AiBj+J/POsphZG0TzwxJQPtt5PHiZmOJJYAn+sg8j7cJww=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.7.1_1527451128284_0.35713219598662294"},"_hasShrinkwrap":false},"0.7.2":{"name":"dana","version":"0.7.2","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"7144630b613d1ef8ecbba702b60779cf70a072d7","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.7.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-3pdWwMYypJKV0KC6N2ewcAuMr0XZF45ifoq9M3k6Xjb6B0DGldoVRRB5mHBXCmAOc8Ld57fOq/elehNvYoJa/Q==","shasum":"aa32329034a2ef4f725af38d6a8500a6559fa2fd","tarball":"https://registry.npmjs.org/dana/-/dana-0.7.2.tgz","fileCount":46,"unpackedSize":126031,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCw7RCRA9TVsSAnZWagAAk5IP/12NJzwV1y7cK6OhI/Bc\nPvbCsY6MSU4RN4DlrNd8V6t1jJq5Sdn2NGhhPQZPiRBPIloWnljUnxH460vJ\nnByaxXtceD+ERzn5+D+PT7gqjBuSUW96YPW+kTlKejKMwTDuIvqxiG3dYEvT\nQ95XkbxhFEJbal7q+RN+ULYXH1JPK8Aiqs1rqMR35Un5K+uxwBiKo6n+oGCB\nVbG2KsM+xXjaevM/+3tlA8X3/rNbdH4Y2UFHxMxIQk7UX9KXApByNVhOgbTF\nIsl++nYVLEZK1eAOwJGp6fTq0S/RaJtJG9uu79aTRLVCU0mNs3q0OBkoWajJ\ntwLfXFCqVGBGjB55oh//G4gCxS7lmnofZRHgl9pMS0qaPa7Y4Xc2RjaTKaNF\nGkvforHkHJ/RTo760Goh5ksA7PDBnVG2KEm/sLw6q1YXYzcbG9tCutd9+C9c\nMD5D0t5me09pn8733smrikDB1VUjbOU3d0MUAMVykxC/3lWcpRjdjyV/LMIW\nqgClkj1FDOyuGx4cYFCFpnVaBSm6h8/pMHsMCJi25GxL91f3Sm7XqIV3oMC/\nhnRfweSKnBM1cjMUEtRG4fQ+XUgb7wEJJVlQisA+Ur7OQsCOoglGTRLlz/A6\nUcz7amYB76cqjkgEUY7mSjcOBJKr/y53rljCNLiUURoVG/dn8UhQfISqihKy\nQHBX\r\n=Mksh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHmXWEDRIzgxZhrzeydssO8UUCGGpPuhydv9fxM06lEQAiBQ2d6ILnWOOCgcHS9ZMhmHrX489DqFdsy7VYLo+8KM9Q=="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.7.2_1527451345206_0.766234143671271"},"_hasShrinkwrap":false},"0.8.0":{"name":"dana","version":"0.8.0","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.9.0","liftoff":"^2.3.0","lodash":"^4.17.4","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.18.1","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^3.4.2","mock-fs":"^4.4.2","nyc":"^11.7.1","sinon":"^5.0.7"},"gitHead":"69e3eea3bb728f6182324d15451b1d3c01aa3725","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.8.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-oRemMJC3HLMgrWcReJyEm7r5IJti4g1Lu1eAg+bwulL+fQwwpQS/pUiv91TGbCZr/41BmvZ7OwOfg++bbDVF4Q==","shasum":"af10d391545c9c2f65ca38864c50eff53bd5aa37","tarball":"https://registry.npmjs.org/dana/-/dana-0.8.0.tgz","fileCount":46,"unpackedSize":126091,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEhYOCRA9TVsSAnZWagAA5tUP/iKjBPX05lB+XWPTHmXf\npXTmMwANSIZNtqmbcEJ0R7Hk8BXhzRTMcrfJqjSUTlik2hrKbrY1UUZGeY38\ngV//QYSkt5LWasSsBqwsbNg7G4CRskZPC8L4XLDXE9FxoMezRWtHu4oVh5b5\njE8xaiO/SjBMDiUQ5mmMtxtAtWGSWrTDMmtZkC9KEmrV/0r3EYzfBU9y2jyv\n9a3FX6ej8mM+GzbXFfZv/ZP65+oP8QqUcIZrJTSbNE/bljoJL74ALaKjosU1\nRJt5EVCJgCPI6SjP5FQJU1JRs26IxxJGT9nFDK9LxGF6lDbst6yPqy/wBKxZ\n38Kl8MLnpRBXuQABweeigqTjQBjWEZ+dgsOFN9t7ero1EjKNBSWvPJhoJfZ2\nPD0wtoulotscmeQVDpae6rYUqq5ihKzFF6fPLRmfRtDjelBsF7/n8tJBEK8D\naqZpNUY9VN8e0DJDmsphp6A8of0waB2rCyeCs3YbCzRyk3Iz5QqHizroyQav\nzcaZ776+WivMyMAMN5u8/KomOwMbzVPp+UbkcNjGlSkw+5hgCeFpzG9uCjNy\nrrfpokLcKluir2BPUOUtq7z1cdMx/NYxF+jET7P+GsmxSlQvKJZ3u1rRn9YN\nUnavRzR/U7vUKCGBAuFbLETAR4wjK+fbAsOGUQW/GS25YQCMDqEICURXAyBh\n07LB\r\n=WKrY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDL3/2TvQILiSShCz909H+qHos5iKvBqngV4VgPxLaobAIgTYJgNWlvMwMP2xy8ToBpzkar/SArz/3NLHJwXAqEeBk="}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.8.0_1527911949511_0.11269802586451427"},"_hasShrinkwrap":false},"0.8.2":{"name":"dana","version":"0.8.2","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.5.0","chalk":"^1.1.3","commander":"^2.9.0","deep-diff":"^0.3.8","fs-extra":"^3.0.1","glob":"^7.1.2","glob-promise":"^3.1.0","js-yaml":"^3.12.0","liftoff":"^2.3.0","lodash":"^4.17.10","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.22.2","mysql2":"^1.3.5","shortid":"^2.2.8","simple-array-diff":"^1.1.0","tildify":"^1.2.0","time-stamp":"^2.0.0","v8flags":"^2.1.1"},"devDependencies":{"coveralls":"^3.0.1","expect.js":"^0.3.1","mocha":"^5.2.0","mock-fs":"^4.4.2","nyc":"^11.9.0","sinon":"^5.1.1"},"gitHead":"646005e1517f1f92fa6ad4c38b69be9b62e050de","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@0.8.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-RkTwhCfWgJzH8v+BmY2M0A2hD4VFDj4PiyF9lEQIGXj7jYJBgcSTANEEMD3+/xx7PEQ8BEWsxtOXOVKHzA7RPQ==","shasum":"c3a9f65026342cbe0b6c7243764a146bae73a1e6","tarball":"https://registry.npmjs.org/dana/-/dana-0.8.2.tgz","fileCount":46,"unpackedSize":126093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHBTRCRA9TVsSAnZWagAAu2AP/jQfEbarDZ8xSTIjRhD8\nDhYtf/RG+/bAvIcC/GMeH6V0nIwvMxjK4V7mLgtkOjacv4BeuIX7ywq7E/OZ\nEmV7o6NJAGlUO4VByub9JsYe5Kw+QaHvbqtFoX2vC4KMyOwMXx2+oOXjXMVX\nXh6h3yh0q0lWnbQDshN4C/YHajkDs/OHrmTGeEABCrklyjHYTa9G9z0+Ew/B\n6u69mtkK1lr1dYzB8qOY/zY35uu4+jO8jQsTubBWv7sShChVgiBW6Ab84OGs\nniDpCKYujkpjV5oihWVZACHJ1T3oV3RbLu9TTWHzTYQbNXoOAfz/+jaSyDx+\nhyPUaEnAu01H3prsnKNSBIm/3kM7Rk9V4cBI13iIlH4NzlP4J+poTPIQYWiy\nbYGC1UYiYjG1B20k6FqY0r66Ol9F+ECxSWWTeDIH7YK87JpfURogks1AP+zC\nHUTh+1qoTeW2PIR74C2KVVsBonphCI4KcYSaYMsdXi/+9grtWToMsfdnhKMA\ntwdD8egIb5JVIGmmJIAQvxExgsorByEiTdx4p3xQ/+lh1RWe6EnAJFMI3y78\nSffiSPG2sqteM/MDfH8GMxA10SBUZetPQbZbI8hP9vdKf/6ZnZlM4Iquu71k\nVSJ5k63X6D/s8xwUmli9x8eEGpApEcmSDfKuT3MQ3z2As3zmTrNueoDauKQS\nWCSH\r\n=wX//\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrMWuwu9uPpH/6ODwpvfenqvYjmKOigtEQ4KuIHMuWBwIhAMBxPMj+DCnZN1QWVk+drc5qApNaTlf+S4y0lB8ZNFnp"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_0.8.2_1528566991636_0.3104196640828214"},"_hasShrinkwrap":false},"1.0.0":{"name":"dana","version":"1.0.0","description":"A simple database migration tool!","author":{"name":"Ram Hejazi"},"license":"MIT","main":"src/dana.js","scripts":{"test":"nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/unit/*","coverage":"nyc report --reporter=text-lcov | coveralls","test:integration":"./test/integration/bootstrap.sh","mkdoc":"node ./src/scripts/docs.js"},"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"bin":{"dana":"./bin/cli.js"},"nyc":{"per-file":true,"include":["./src/**/*.js"]},"dependencies":{"bluebird":"^3.7.2","chalk":"^3.0.0","commander":"^4.0.1","deep-diff":"^1.0.2","fs-extra":"^8.1.0","glob":"^7.1.6","glob-promise":"^3.4.0","js-yaml":"^3.13.1","liftoff":"^3.1.0","lodash":"^4.17.15","minimist":"^1.2.0","mitra":"^0.4.1","moment":"^2.24.0","mysql2":"^2.0.1","shortid":"^2.2.15","simple-array-diff":"^1.1.0","tildify":"^2.0.0","time-stamp":"^2.2.0","v8flags":"^3.1.3"},"devDependencies":{"coveralls":"^3.0.9","expect.js":"^0.3.1","mocha":"^6.2.2","mock-fs":"^4.10.4","nyc":"^14.1.1","sinon":"^7.5.0"},"gitHead":"5beead3d9623401627d5a47dfef8e0fa071dea4e","homepage":"https://github.com/ramhejazi/dana#readme","_id":"dana@1.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"ramhejazi","email":"htmlpack@gmail.com"},"dist":{"integrity":"sha512-bKopSL5nJ6JWtD2Mal4opHPz8qgsa+Z2TBbrF6XvlFB1Wy6+HQloITl3qpTUgqtrmmcbIMpK25nHAcbT52PwLw==","shasum":"f4c2fe76452ef926f1078f2ebde33f2412fbb842","tarball":"https://registry.npmjs.org/dana/-/dana-1.0.0.tgz","fileCount":46,"unpackedSize":126095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5EL1CRA9TVsSAnZWagAAoQkP/iVYQPsx6a5XA3ysmRml\nK7qiCSYB09tL6bfvn91sJ1NMWM0ZeXw/+egAqIAfitbbpajvDUG3ebsCy+0w\ndAX7d6yE5XHZJQZGO8A0cRi0JMjNHgFOK4sILJ6EHtbGy/FlcOHUOLcTCx2P\nF/5vFYYZUfFUEuF1a5OAFCIYjOQeZKNK0EDnkdyIDZ7GmxKK5vEIp1EcqjQR\n45vIw8ICtW9MelDT1ynpqoiw+jTtFPdjF14IcNlO3cW6K0Kwlyk9n17mS1By\nEbX86nBv9welRE3BXU11YRAkSpYuc1X/LS3vPzqUG7YaPGr0DXnvdJxmo2m1\nJdB0Lly8NPKRNjU2XCXTXBnfZbwD+y9NLEjnZmwFLPlipaKrRlwawdqOe4hW\nRjI/5MZC1/cPe3dIZaDdz61yxLeblowSFsXkwgNJsEu1Ol2Vnifzo0G5uzex\n9E8ytTTqM9i/4bjnv6BGiTzsMz4voAMP2j3kcQtFUKfEwETDIIO2H1ktUIVa\n2pWlbl6FQtlICLMcne6Zj8woWf+jQ7xP1U+Anq9JRhcF+wnwFRkM0cpiDgPD\n0/ddC5L2jgHGHb7PUDmPkSTDsf/oDYURrB9SxSeYModIhhEChjCCoF83fa6o\nPx98FnoNWBBOkmnlzrvYGlgorVNjlJlerB/10iuBtPoCWTjGrP69yvFnctPl\nvmh/\r\n=AbHV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTOofBkiD4GHFw3TOeVQGQpGe+hpzBsqmhuYbtQE0tcgIhAN0AR/I28Fj0QMxPH67m4eKlPH+7pPjDSdLsDyiAao68"}]},"maintainers":[{"name":"ramhejazi","email":"htmlpack@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dana_1.0.0_1575240436821_0.021623561006688385"},"_hasShrinkwrap":false}},"homepage":"https://github.com/ramhejazi/dana#readme","keywords":["cli","command","migration","sql","mysql","ddl","auto-generating","database","table"],"repository":{"type":"git","url":"git+https://github.com/ramhejazi/dana.git"},"author":{"name":"Ram Hejazi"},"bugs":{"url":"https://github.com/ramhejazi/dana/issues"},"license":"MIT","readmeFilename":"README.md"}