├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── VHS-TAPE.sketch ├── bin.js ├── components.js ├── example.js ├── index.js ├── logo.png └── package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.sketch 2 | *.png 3 | .travis.yml 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/README.md -------------------------------------------------------------------------------- /VHS-TAPE.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/VHS-TAPE.sketch -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/bin.js -------------------------------------------------------------------------------- /components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/components.js -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/index.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdivision/vhs-tape/HEAD/package.json --------------------------------------------------------------------------------