├── .gitignore ├── .npmignore ├── .travis.yml ├── CARDRULES.md ├── CHANGELOG ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── bower.json ├── dist ├── jquery.payform.js ├── jquery.payform.min.js ├── payform.js └── payform.min.js ├── index.html ├── jquery.html ├── package.json ├── src ├── jquery.payform.coffee └── payform.coffee └── test ├── cardType_spec.coffee ├── formatCardExpiry_spec.coffee ├── formatCardNumber_spec.coffee ├── mocha.opts ├── parseCardExpiry_spec.coffee ├── validateCardCVC_spec.coffee ├── validateCardExpiry_spec.coffee └── validateCardNumber_spec.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/.travis.yml -------------------------------------------------------------------------------- /CARDRULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/CARDRULES.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/bower.json -------------------------------------------------------------------------------- /dist/jquery.payform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/dist/jquery.payform.js -------------------------------------------------------------------------------- /dist/jquery.payform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/dist/jquery.payform.min.js -------------------------------------------------------------------------------- /dist/payform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/dist/payform.js -------------------------------------------------------------------------------- /dist/payform.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/dist/payform.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/index.html -------------------------------------------------------------------------------- /jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/jquery.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/package.json -------------------------------------------------------------------------------- /src/jquery.payform.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/src/jquery.payform.coffee -------------------------------------------------------------------------------- /src/payform.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/src/payform.coffee -------------------------------------------------------------------------------- /test/cardType_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/cardType_spec.coffee -------------------------------------------------------------------------------- /test/formatCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/formatCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/formatCardNumber_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/formatCardNumber_spec.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/parseCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/parseCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/validateCardCVC_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/validateCardCVC_spec.coffee -------------------------------------------------------------------------------- /test/validateCardExpiry_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/validateCardExpiry_spec.coffee -------------------------------------------------------------------------------- /test/validateCardNumber_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondavidjohn/payform/HEAD/test/validateCardNumber_spec.coffee --------------------------------------------------------------------------------