├── .bin ├── push └── test ├── .gitignore ├── .travis.yml ├── README.md ├── __tests__ ├── fix-case-test.js └── index-test.js ├── fix-case.js ├── index.js └── package.json /.bin/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/.bin/push -------------------------------------------------------------------------------- /.bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/.bin/test -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/fix-case-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/__tests__/fix-case-test.js -------------------------------------------------------------------------------- /__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/__tests__/index-test.js -------------------------------------------------------------------------------- /fix-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/fix-case.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UXtemple/autoprefix/HEAD/package.json --------------------------------------------------------------------------------