├── .gitignore ├── .npmignore ├── Cakefile ├── LICENSE ├── README.md ├── package.json └── src └── iap_verifier.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib/ 3 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git* 3 | *.md 4 | Makefile 5 | src/ 6 | test/ 7 | node_modules/ -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/iap_verifier/HEAD/Cakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/iap_verifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/iap_verifier/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/iap_verifier/HEAD/package.json -------------------------------------------------------------------------------- /src/iap_verifier.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcrawfor/iap_verifier/HEAD/src/iap_verifier.coffee --------------------------------------------------------------------------------