{
  "name": "dukpt",
  "version": "4.0.3",
  "description": "Node JS Library for Derived Unique Key Per Transaction (DUKPT) Encryption",
  "main": "src/index.js",
  "scripts": {
    "test": "nyc --reporter=text-summary --reporter=cobertura --reporter=lcov node_modules/.bin/mocha test/**/*.js",
    "release": "semantic-release",
    "release:dryrun": "semantic-release --dry-run",
    "lint": "eslint ."
  },
  "engines": {
    "node": ">=12.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dpjayasekara/node-dukpt.git"
  },
  "release": {
    "branches": [
      "master"
    ],
    "preset": "conventionalcommits",
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "releaseRules": [
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "type": "refactor",
              "release": "patch"
            },
            {
              "type": "style",
              "release": "patch"
            },
            {
              "type": "chore",
              "release": "patch"
            },
            {
              "type": "perf",
              "release": "patch"
            }
          ],
          "parserOpts": {
            "noteKeywords": [
              "BREAKING CHANGE",
              "BREAKING CHANGES",
              "BREAKING"
            ]
          }
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "parserOpts": {
            "noteKeywords": [
              "BREAKING CHANGE",
              "BREAKING CHANGES",
              "BREAKING"
            ]
          },
          "writerOpts": {
            "commitsSort": [
              "subject",
              "scope"
            ]
          }
        }
      ],
      [
        "@semantic-release/changelog",
        {
          "changelogFile": "CHANGELOG.md",
          "changelogTitle": "# Changelog"
        }
      ],
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "CHANGELOG.md",
            "package.json",
            "package-lock.json"
          ],
          "message": "chore(release): ${nextRelease.version}"
        }
      ],
      "@semantic-release/github"
    ]
  },
  "keywords": [
    "dukpt",
    "encryption",
    "security",
    "payments"
  ],
  "author": "Deepal Jayasekara <dpjayasekara@gmail.com> (https://blog.insiderattack.net)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dpjayasekara/node-dukpt/issues"
  },
  "homepage": "https://github.com/dpjayasekara/node-dukpt#readme",
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/git": "^10.0.1",
    "conventional-changelog-conventionalcommits": "^4.6.1",
    "eslint": "8.17.0",
    "eslint-config-airbnb": "19.0.4",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-jsx-a11y": "6.5.1",
    "eslint-plugin-react": "7.30.0",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "randexp": "0.5.3",
    "should": "13.2.3",
    "sinon": "11.1.2"
  },
  "dependencies": {
    "aes-js": "2.1.0"
  }
}
