├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── cmd.js └── usage.txt ├── index.js ├── package.json └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/README.md -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/bin/cmd.js -------------------------------------------------------------------------------- /bin/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/bin/usage.txt -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanlucas/remote-file-size/HEAD/test.js --------------------------------------------------------------------------------