nmig/package.json

42 lines
1,014 B
JSON
Raw Normal View History

2016-02-13 20:01:32 +02:00
{
"name": "nmig",
2018-09-12 00:22:45 +03:00
"version": "3.5.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": {
2018-07-28 19:43:49 +03:00
"mysql": "^2.16.0",
"pg": "^7.4.3",
2017-06-17 18:53:30 +03:00
"pg-copy-streams": "^1.2.0"
2017-05-20 14:16:19 +03:00
},
"devDependencies": {
2018-07-28 19:43:49 +03:00
"@types/mysql": "^2.15.5",
"@types/node": "^10.5.4",
"@types/pg": "^7.4.10",
2018-08-30 02:51:35 +03:00
"@types/tape": "^4.2.32",
2018-07-28 19:43:49 +03:00
"tape": "^4.9.1",
2018-09-12 00:18:53 +03:00
"typescript": "^3.0.3"
},
2017-05-20 14:16:19 +03:00
"scripts": {
"build": "tsc",
2018-07-30 01:13:32 +03:00
"start": "npm run build && node dist/src/Main.js",
"test": "npm run build && 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
}