├── .gitignore ├── Gruntfile.js ├── MIT-LICENSE ├── README.md ├── lib └── index.js ├── package.json └── test └── fred_spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | coverage/ -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/package.json -------------------------------------------------------------------------------- /test/fred_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rleahy22/fredApi/HEAD/test/fred_spec.js --------------------------------------------------------------------------------