├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── cypress.json ├── cypress ├── fixtures │ └── example.json ├── integration │ ├── paystack-simple.js │ └── sample.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── index.d.ts ├── package.json ├── paystack.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .eslintrc.json 2 | .vscode 3 | cypress -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/paystack-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/integration/paystack-simple.js -------------------------------------------------------------------------------- /cypress/integration/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/integration/sample.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/package.json -------------------------------------------------------------------------------- /paystack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/paystack.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashinzekene/paystack-simple/HEAD/webpack.config.js --------------------------------------------------------------------------------