commit edf09ea5435b1c2248ff04dfda023cbc87cfaf2f Author: Sambo Chea Date: Fri Mar 26 08:30:56 2021 +0700 Init data migration with nodejs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4c9a2d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +node_modules/ +dist/ +build/ +.DS_Store +yarn.lock +package-lock.json \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..28e2eb4 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "data-migration-nodejs", + "version": "1.0.0", + "description": "Nodejs data migration with excel, csv and rest apis.", + "main": "index.js", + "scripts": { + "test": "jest" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/CUBETIQ/data-migration-nodejs.git" + }, + "keywords": [ + "nodejs", + "excel", + "csv", + "rest", + "data-import" + ], + "author": "Sambo Chea ", + "license": "MIT", + "bugs": { + "url": "https://github.com/CUBETIQ/data-migration-nodejs/issues" + }, + "homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme" +}