UNPKG

east

Version:

node.js database migration tool for mongodb, sqlite, postgres, mysql, couchbase

69 lines (68 loc) 2.02 kB
{ "name": "east", "description": "node.js database migration tool for mongodb, sqlite, postgres, mysql, couchbase", "version": "2.0.3", "author": "Oleg Korobenko <oleg.korobenko@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/okv/east.git" }, "keywords": [ "migrate", "migration", "database", "db", "mongodb", "sqlite", "postgres", "mysql", "couchbase", "couchdb" ], "types": "lib/index.d.ts", "main": "lib/index.js", "scripts": { "testSpecified": "tap --reporter spec --no-coverage --color --timeout 20 --bail --jobs-auto", "test": "npm run testSpecified test", "makeTestSnapshots": "TAP_SNAPSHOT=1 npm run testSpecified test", "coverage": "c8 --reporter text-summary --reporter html --reporter lcov npm run testSpecified test -- --reporter dot", "lintChangelog": "remark --rc-path .remarkrc-lintChangelog.js --frail > /dev/null CHANGELOG.md", "lintTsMigrationTemplate": "tsc lib/migrationTemplate.ts --noEmit", "lintTsTypes": "tsc lib/index.d.ts", "lintJs": "eslint ./", "lint": "npm run lintChangelog && npm run lintTsMigrationTemplate && npm run lintTsTypes && npm run lintJs" }, "bin": { "east": "bin/east.js" }, "dependencies": { "commander": "5.1.0", "expressionify": "0.9.3", "mhook": "1.0.1", "p-map": "4.0.0", "p-props": "4.0.0", "p-timeout": "3.2.0", "path-exists": "4.0.0", "underscore": "1.12.1" }, "devDependencies": { "c8": "7.6.0", "eslint": "6.8.0", "eslint-config-airbnb-base": "14.1.0", "eslint-plugin-import": "2.20.2", "expect.js": "0.3.1", "remark": "12.0.0", "remark-changelog": "0.1.2", "remark-cli": "8.0.0", "remark-lint-maximum-line-length": "2.0.0", "remark-preset-lint-consistent": "3.0.0", "remark-preset-lint-recommended": "4.0.0", "tap": "14.11.0", "ts-node": "8.9.1", "typescript": "3.8.3" }, "engines": { "node": ">=10.17.0" } }