├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE.md ├── README.md ├── appveyor.yml ├── bin └── lsa ├── package.json ├── spec ├── bzip-spec.coffee ├── common-spec.coffee ├── fixtures │ ├── file.txt.bz2 │ ├── file.txt.gz │ ├── invalid.tar │ ├── invalid.tar.gz │ ├── invalid.zip │ ├── nested.tar │ ├── nested.zip │ ├── no-dir-entries.tgz │ ├── one-file.tar │ ├── one-file.tar.bz2 │ ├── one-file.tar.gz │ ├── one-file.tbz │ ├── one-file.tbz2 │ ├── one-file.tgz │ ├── one-file.zip │ ├── one-folder.tar │ ├── one-folder.tar.bz2 │ ├── one-folder.tar.gz │ ├── one-folder.tbz │ ├── one-folder.tbz2 │ ├── one-folder.tgz │ └── one-folder.zip ├── gzip-spec.coffee ├── tar-spec.coffee └── zip-spec.coffee └── src ├── ls-archive-cli.coffee └── ls-archive.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/lsa: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/ls-archive-cli')() 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/package.json -------------------------------------------------------------------------------- /spec/bzip-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/bzip-spec.coffee -------------------------------------------------------------------------------- /spec/common-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/common-spec.coffee -------------------------------------------------------------------------------- /spec/fixtures/file.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/file.txt.bz2 -------------------------------------------------------------------------------- /spec/fixtures/file.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/file.txt.gz -------------------------------------------------------------------------------- /spec/fixtures/invalid.tar: -------------------------------------------------------------------------------- 1 | not a tar 2 | -------------------------------------------------------------------------------- /spec/fixtures/invalid.tar.gz: -------------------------------------------------------------------------------- 1 | not a gzipped tar 2 | -------------------------------------------------------------------------------- /spec/fixtures/invalid.zip: -------------------------------------------------------------------------------- 1 | not a zip 2 | -------------------------------------------------------------------------------- /spec/fixtures/nested.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/nested.tar -------------------------------------------------------------------------------- /spec/fixtures/nested.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/nested.zip -------------------------------------------------------------------------------- /spec/fixtures/no-dir-entries.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/no-dir-entries.tgz -------------------------------------------------------------------------------- /spec/fixtures/one-file.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tar -------------------------------------------------------------------------------- /spec/fixtures/one-file.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tar.bz2 -------------------------------------------------------------------------------- /spec/fixtures/one-file.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tar.gz -------------------------------------------------------------------------------- /spec/fixtures/one-file.tbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tbz -------------------------------------------------------------------------------- /spec/fixtures/one-file.tbz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tbz2 -------------------------------------------------------------------------------- /spec/fixtures/one-file.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.tgz -------------------------------------------------------------------------------- /spec/fixtures/one-file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-file.zip -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tar -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tar.bz2 -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tar.gz -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tbz -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tbz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tbz2 -------------------------------------------------------------------------------- /spec/fixtures/one-folder.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.tgz -------------------------------------------------------------------------------- /spec/fixtures/one-folder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/fixtures/one-folder.zip -------------------------------------------------------------------------------- /spec/gzip-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/gzip-spec.coffee -------------------------------------------------------------------------------- /spec/tar-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/tar-spec.coffee -------------------------------------------------------------------------------- /spec/zip-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/spec/zip-spec.coffee -------------------------------------------------------------------------------- /src/ls-archive-cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/src/ls-archive-cli.coffee -------------------------------------------------------------------------------- /src/ls-archive.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/node-ls-archive/HEAD/src/ls-archive.coffee --------------------------------------------------------------------------------