├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── bin └── cli.js ├── lib └── convert-excel-to-json.js ├── package.json └── tests ├── main.test.js ├── test-data-2.xlsx └── test-data.xlsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/bin/cli.js -------------------------------------------------------------------------------- /lib/convert-excel-to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/lib/convert-excel-to-json.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/package.json -------------------------------------------------------------------------------- /tests/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/tests/main.test.js -------------------------------------------------------------------------------- /tests/test-data-2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/tests/test-data-2.xlsx -------------------------------------------------------------------------------- /tests/test-data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiegoZoracKy/convert-excel-to-json/HEAD/tests/test-data.xlsx --------------------------------------------------------------------------------