├── .gitignore ├── .travis.yml ├── 7za.exe ├── LICENSE ├── Makefile ├── README.md ├── fixtures ├── 1 │ ├── .DS_Store │ │ └── .gitkeep │ ├── 1.8.2 │ │ └── version.txt │ ├── 2.1.0 │ │ └── version.txt │ └── malformed │ │ └── version.txt ├── 1_4_X-index.json ├── 1_4_X-malformed-index.json ├── 1_5_X-index.json ├── 1_6_X-index.json ├── 1_7_X-index.json ├── 1_8_X-index.json ├── 1_9_X-index.json ├── 2_0_X-index.json ├── 2_1_X-index.json ├── branches-simple.json ├── branches.json ├── master-index.json ├── sdk.zip └── test.zip ├── index.js ├── package.json ├── shot.png ├── test.js ├── tsm └── usage.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | docs/ 3 | coverage.html 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/.travis.yml -------------------------------------------------------------------------------- /7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/7za.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/1/.DS_Store/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1/.DS_Store/.gitkeep -------------------------------------------------------------------------------- /fixtures/1/1.8.2/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1/1.8.2/version.txt -------------------------------------------------------------------------------- /fixtures/1/2.1.0/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1/2.1.0/version.txt -------------------------------------------------------------------------------- /fixtures/1/malformed/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1/malformed/version.txt -------------------------------------------------------------------------------- /fixtures/1_4_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_4_X-index.json -------------------------------------------------------------------------------- /fixtures/1_4_X-malformed-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_4_X-malformed-index.json -------------------------------------------------------------------------------- /fixtures/1_5_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_5_X-index.json -------------------------------------------------------------------------------- /fixtures/1_6_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_6_X-index.json -------------------------------------------------------------------------------- /fixtures/1_7_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_7_X-index.json -------------------------------------------------------------------------------- /fixtures/1_8_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/1_8_X-index.json -------------------------------------------------------------------------------- /fixtures/1_9_X-index.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/2_0_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/2_0_X-index.json -------------------------------------------------------------------------------- /fixtures/2_1_X-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/2_1_X-index.json -------------------------------------------------------------------------------- /fixtures/branches-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/branches-simple.json -------------------------------------------------------------------------------- /fixtures/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/branches.json -------------------------------------------------------------------------------- /fixtures/master-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/master-index.json -------------------------------------------------------------------------------- /fixtures/sdk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/sdk.zip -------------------------------------------------------------------------------- /fixtures/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/fixtures/test.zip -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/package.json -------------------------------------------------------------------------------- /shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/shot.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/test.js -------------------------------------------------------------------------------- /tsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/tsm -------------------------------------------------------------------------------- /usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rf/tsm/HEAD/usage.js --------------------------------------------------------------------------------