{
  "name": "@heidelpay/nodejs-sdk",
  "version": "1.3.1",
  "description": "Heidelpay SDK NodeJS",
  "keywords": [
    "heidelpay",
    "payment processing",
    "credit cards",
    "api"
  ],
  "main": "dist/index.umd.js",
  "module": "dist/index.es5.js",
  "typings": "dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": ""
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
    "prebuild": "rimraf dist",
    "build": "NODE_ENV=production tsc --module commonjs && rollup -c rollup.config.ts",
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:prod": "npm run lint && CI=true npm run test -- --coverage --no-cache",
    "deploy-docs": "ts-node tools/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
    "prettier": "prettier --write '{src,test}/**/*.ts'"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "npm run prettier"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "automock": false,
    "setupFiles": [
      "./jest.setup.ts"
    ],
    "testEnvironment": "node",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 30,
        "functions": 30,
        "lines": 30,
        "statements": 30
      }
    },
    "collectCoverage": true
  },
  "prettier": {
    "semi": false,
    "singleQuote": true
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "devDependencies": {
    "@types/fetch-mock": "^6.0.3",
    "@types/jest": "^22.0.0",
    "@types/node": "^10.0.3",
    "fetch-mock": "^7.0.0-alpha.6",
    "husky": "^0.14.0",
    "jest": "^22.0.2",
    "prettier": "^1.13.4",
    "prompt": "^1.0.0",
    "rimraf": "^2.6.1",
    "rollup": "^0.59.2",
    "rollup-plugin-commonjs": "^9.0.0",
    "rollup-plugin-json": "^3.0.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-typescript2": "^0.13.0",
    "ts-jest": "^22.0.0",
    "ts-node": "^6.0.0",
    "tslint": "^5.8.0",
    "tslint-config-prettier": "^1.1.0",
    "tslint-config-standard": "^7.0.0",
    "typescript": "^2.6.2"
  },
  "dependencies": {
    "dotenv": "^6.0.0",
    "es6-promise": "^4.2.4",
    "isomorphic-fetch": "^2.2.1",
    "js-base64": "^2.4.9"
  },
  "directories": {
    "doc": "docs",
    "test": "test"
  },
  "homepage": "https://docs.heidelpay.com",
  "author": "Heidelpay (https://www.heidelpay.com/en/)"
}
