├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── index.d.ts ├── index.js ├── package.json ├── readme.md └── test ├── cssspec.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/LICENSE -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/readme.md -------------------------------------------------------------------------------- /test/cssspec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/test/cssspec.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/css-modules/generic-names/HEAD/test/index.js --------------------------------------------------------------------------------