├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── appveyor.yml ├── benchmark └── benchmark.coffee ├── index.js ├── package.json └── spec └── specificity-spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark/benchmark.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/benchmark/benchmark.coffee -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/package.json -------------------------------------------------------------------------------- /spec/specificity-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/clear-cut/HEAD/spec/specificity-spec.coffee --------------------------------------------------------------------------------