├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib └── import.js ├── package.json └── test ├── data ├── dummy.json └── sample.csv ├── import.js └── jawn.js /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | node_modules 3 | data.jawn 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/index.js -------------------------------------------------------------------------------- /lib/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/lib/import.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/package.json -------------------------------------------------------------------------------- /test/data/dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/test/data/dummy.json -------------------------------------------------------------------------------- /test/data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/test/data/sample.csv -------------------------------------------------------------------------------- /test/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/test/import.js -------------------------------------------------------------------------------- /test/jawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForPhilly/jawn/HEAD/test/jawn.js --------------------------------------------------------------------------------