├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __test__ └── index.test.js ├── circle.yml ├── cli.js ├── images ├── mitsuha.png └── taki.png ├── media └── preview.gif ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/README.md -------------------------------------------------------------------------------- /__test__/index.test.js: -------------------------------------------------------------------------------- 1 | const fn = require('../') 2 | 3 | test('main', () => { 4 | expect(fn()).toBe(1) 5 | }) 6 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/circle.yml -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/cli.js -------------------------------------------------------------------------------- /images/mitsuha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/images/mitsuha.png -------------------------------------------------------------------------------- /images/taki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/images/taki.png -------------------------------------------------------------------------------- /media/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/media/preview.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/your-name/HEAD/yarn.lock --------------------------------------------------------------------------------