├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .jshintrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── cordova-icon ├── cordova-icon-resize.png ├── index.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/.jshintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/README.md -------------------------------------------------------------------------------- /bin/cordova-icon: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./../index.js'); 3 | -------------------------------------------------------------------------------- /cordova-icon-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/cordova-icon-resize.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexDisler/cordova-icon/HEAD/package.json --------------------------------------------------------------------------------