├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── coffeelint.json ├── lib ├── input.coffee ├── label.coffee ├── main.coffee └── utils.coffee ├── package.json └── styles └── main.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/input.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/lib/input.coffee -------------------------------------------------------------------------------- /lib/label.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/lib/label.coffee -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/lib/utils.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/package.json -------------------------------------------------------------------------------- /styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t9md/atom-smalls/HEAD/styles/main.less --------------------------------------------------------------------------------