UNPKG

zarinpal-checkout-ts

Version:

Easy to implement solution for Zarinpal API

57 lines (56 loc) 1.23 kB
{ "name": "zarinpal-checkout-ts", "version": "1.0.0", "description": "Easy to implement solution for Zarinpal API", "license": "MIT", "repository": "guoard/zarinpal", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "test": "ava", "build": "unbuild", "release": "npm run build && np", "lint": "eslint --ext .ts . && prettier --check src test", "lint:fix": "eslint --fix --ext .ts . && prettier --write src test" }, "keywords": [ "zarinpal", "nodejs", "checkout", "gateway", "zarinpal-checkout" ], "dependencies": { "got": "^11.8.6" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^5.59.2", "@typescript-eslint/parser": "^5.59.2", "ava": "^5.2.0", "eslint": "^8.39.0", "np": "^7.7.0", "prettier": "^2.8.8", "ts-node": "^10.9.1", "typescript": "^5.0.4", "unbuild": "^1.2.1" }, "ava": { "extensions": [ "ts" ], "require": [ "ts-node/register" ] } }