nmig/package.json

42 lines
1 KiB
JSON
Raw Normal View History

2016-02-13 20:01:32 +02:00
{
"name": "nmig",
2017-11-13 00:10:23 +02:00
"version": "3.4.0",
"description": "The database migration app",
"author": "Anatoly Khaytovich<anatolyuss@gmail.com>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/AnatolyUss/nmig.git"
},
2018-02-14 11:03:03 +02:00
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
2017-11-13 00:10:23 +02:00
"mysql": "^2.15.0",
2018-02-12 21:12:40 +02:00
"pg": "^7.4.1",
2017-06-17 18:53:30 +03:00
"pg-copy-streams": "^1.2.0"
2017-05-20 14:16:19 +03:00
},
"devDependencies": {
2018-05-04 18:01:08 +03:00
"@types/mysql": "^2.15.4",
"@types/node": "^10.0.2",
2018-05-04 18:01:08 +03:00
"@types/pg": "^7.4.8",
2018-05-18 19:22:24 +03:00
"tape": "^4.8.0",
"typescript": "^2.8.3"
},
2017-05-20 14:16:19 +03:00
"scripts": {
"compile_test": "tsc --outDir ./build --module commonjs ./src/*.ts && node ./build/Main.js",
"build": "tsc",
2018-05-04 15:11:56 +03:00
"start": "node dist/src/Main.js",
"test": "node dist/test/Main.test.js"
2017-12-19 00:59:54 +02:00
},
2018-02-14 11:03:03 +02:00
"keywords": [
"database migration",
"copy",
"mysql",
"mariadb",
"postgresql",
"postgres",
"postgre"
]
2016-02-13 20:01:32 +02:00
}