├── .gitignore ├── .npmignore ├── Cakefile ├── LICENSE ├── README.md ├── package.json ├── src └── index.coffee └── test └── test.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .swp 2 | node_modules/ 3 | lib/* 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .swp 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panta/mongoose-file/HEAD/test/test.coffee --------------------------------------------------------------------------------