├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs └── API.md ├── package.json ├── src └── index.js └── test ├── setup.js └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log* 2 | node_modules 3 | /index.js 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .babelrc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/README.md -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/docs/API.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/src/index.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/test/setup.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mx-scissortail/zine/HEAD/test/test.js --------------------------------------------------------------------------------