├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── rollup.config.js ├── src └── gotem.js └── test └── manual.html /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist 3 | node_modules 4 | *.log 5 | *.map 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/gotem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/src/gotem.js -------------------------------------------------------------------------------- /test/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callmecavs/gotem/HEAD/test/manual.html --------------------------------------------------------------------------------