├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── package.json └── test ├── index.js └── test_config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | ./node_modules/.bin/mocha --reporter nyan 3 | 4 | .PHONY: test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/test/index.js -------------------------------------------------------------------------------- /test/test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RamonGebben/data-drive/HEAD/test/test_config.json --------------------------------------------------------------------------------