mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
{ |
|
"name": "xc-migrator-ts", |
|
"version": "0.1.18", |
|
"description": "SQL based schema migrations or evolutions", |
|
"main": "index.js", |
|
"module": "index.js", |
|
"bin": { |
|
"xcm": "./index.js" |
|
}, |
|
"scripts": { |
|
"test:travis": "echo \"test travis\"", |
|
"dev": "node index.js -i test", |
|
"pubilsh": "npm publish .", |
|
"migration-test": "rm -rf xmigrator.json primary-db secondary-db && DB_TYPE=mysql mocha ./lib/SqlMigratorCli/tests/sql.cli.test.js --exit", |
|
"migration-tests": "bash ./docker-compose/migrations/run_migration_tests.sh mysql", |
|
"docs": "jsdoc -c jsdoc.json", |
|
"doc": "jsdoc2md -t readme.hbs ./lib/SqlMigrator/lib/KnexMigrator.js > README.md", |
|
"clean": "node index.js c && rm -rf xmigrator xmigrator.json" |
|
}, |
|
"keywords": [], |
|
"author": "oof1lab <oof1lab@gmail.com>", |
|
"homepage": "https://xgene.cloud", |
|
"license": "AGPL-3.0-or-later", |
|
"directories": { |
|
"lib": "lib", |
|
"test": "__tests__" |
|
}, |
|
"files": [ |
|
"lib" |
|
], |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/nocodb/nocodb.git" |
|
}, |
|
"bugs": { |
|
"url": "https://github.com/nocodb/nocodb/issues" |
|
}, |
|
"dependencies": { |
|
"boxen": "^3.1.0", |
|
"colors": "^1.3.3", |
|
"commander": "^2.19.0", |
|
"dayjs": "^1.8.32", |
|
"debug": "^4.1.1", |
|
"ejs": "^3.0.1", |
|
"emittery": "^0.5.1", |
|
"glob": "^7.1.3", |
|
"handlebars": "^4.7.6", |
|
"jsonfile": "^5.0.0", |
|
"knex": "^0.20.8", |
|
"mkdirp": "^0.5.1", |
|
"rmdir": "^1.2.0" |
|
}, |
|
"peerDependencies": { |
|
"sqlite3": "^5.0.0" |
|
}, |
|
"devDependencies": { |
|
"chai": "^4.2.0", |
|
"dotenv": "^8.2.0", |
|
"eslint": "^5.16.0", |
|
"eslint-config-airbnb-base": "^13.1.0", |
|
"eslint-config-prettier": "^4.1.0", |
|
"eslint-plugin-import": "^2.16.0", |
|
"eslint-plugin-mocha": "^5.3.0", |
|
"eslint-plugin-prettier": "^3.0.1", |
|
"jsdoc": "^3.5.5", |
|
"minami": "^1.2.3", |
|
"mocha": "^6.0.2", |
|
"nyc": "^13.3.0", |
|
"prettier": "^1.16.4", |
|
"should": "^13.2.3", |
|
"jsdoc-to-markdown": "^5.0.3" |
|
} |
|
}
|
|
|