├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── index.js ├── index.js ├── lib ├── Finepack.coffee ├── Keywords.coffee ├── Logger.coffee ├── Messages.coffee ├── Normalize.coffee └── Report.coffee ├── package.json └── test ├── fixtures ├── pkg.json ├── pkg_already_fine.json ├── pkg_backup.json ├── pkg_custom_properties.json ├── pkg_fixed.json ├── pkg_fixed_backup.json ├── pkg_malformed.json ├── pkg_missing.json ├── pkg_missing_backup.json ├── pkg_private.json ├── pkg_required.json └── pkg_required_backup.json └── test.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/bin/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/index.js -------------------------------------------------------------------------------- /lib/Finepack.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Finepack.coffee -------------------------------------------------------------------------------- /lib/Keywords.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Keywords.coffee -------------------------------------------------------------------------------- /lib/Logger.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Logger.coffee -------------------------------------------------------------------------------- /lib/Messages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Messages.coffee -------------------------------------------------------------------------------- /lib/Normalize.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Normalize.coffee -------------------------------------------------------------------------------- /lib/Report.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/lib/Report.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg.json -------------------------------------------------------------------------------- /test/fixtures/pkg_already_fine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_already_fine.json -------------------------------------------------------------------------------- /test/fixtures/pkg_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_backup.json -------------------------------------------------------------------------------- /test/fixtures/pkg_custom_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_custom_properties.json -------------------------------------------------------------------------------- /test/fixtures/pkg_fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_fixed.json -------------------------------------------------------------------------------- /test/fixtures/pkg_fixed_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_fixed_backup.json -------------------------------------------------------------------------------- /test/fixtures/pkg_malformed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_malformed.json -------------------------------------------------------------------------------- /test/fixtures/pkg_missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_missing.json -------------------------------------------------------------------------------- /test/fixtures/pkg_missing_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_missing_backup.json -------------------------------------------------------------------------------- /test/fixtures/pkg_private.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_private.json -------------------------------------------------------------------------------- /test/fixtures/pkg_required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_required.json -------------------------------------------------------------------------------- /test/fixtures/pkg_required_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/fixtures/pkg_required_backup.json -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kikobeats/finepack/HEAD/test/test.coffee --------------------------------------------------------------------------------