{
  "name": "azampay",
  "version": "0.0.5",
  "description": "Azampay NodeJs SDK to help you interact with Azampay API",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "prebuild": "rm -rf dist && npm run clean",
    "build": "tsc && rm -rf ./lib/test && cp -r ./lib/src/* ./lib/ && rm -rf ./lib/src",
    "package": "npm run build -m && ncc build && cd ./lib && find . -name '*.js' -type f -delete && cd ../ && cp -r ./lib/* ./dist/ && rm -rf ./lib && mv dist lib",
    "clean": "rm -rf ./lib/",
    "cm": "cz",
    "release": "npm run package && npm publish",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "set NODE_TLS_REJECT_UNAUTHORIZED = '0' && jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/flexcodelabs/azampay.git"
  },
  "license": "MIT",
  "author": {
    "name": "Flexcode Labs",
    "email": "hi@flexcodelabs.com",
    "url": "https://github.com/flexcodelabs"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "azampay",
    "sdk",
    "nodejs",
    "flexcodelabs",
    "flexcode labs"
  ],
  "bugs": {
    "url": "https://github.com/flexcodelabs/azampay/issues"
  },
  "homepage": "https://github.com/flexcodelabs/azampay#readme",
  "devDependencies": {
    "@ryansonshine/commitizen": "^4.2.8",
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "@types/jest": "^27.5.2",
    "@types/node": "^12.20.11",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "@vercel/ncc": "^0.36.1",
    "axios": "^1.4.0",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "dotenv": "^16.0.3",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "http-request-mock": "^1.8.2",
    "husky": "^6.0.0",
    "jest": "^29.5.0",
    "lint-staged": "^10.5.4",
    "ncc": "^0.3.6",
    "prettier": "^2.2.1",
    "semantic-release": "^19.0.2",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.2.1",
    "typescript": "^4.2.4"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}
