{
  "jest": {
    "transform": {
      "^.+\\.js$": "<rootDir>/node_modules/babel-jest",
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "js",
      "jsx"
    ]
  },
  "name": "bunq-js-api",
  "version": "1.0.0",
  "description": "A wrapper for the Bunq API v1",
  "main": "./dist/index.js",
  "types": "./dist/bunq-api.d.ts",
  "dependencies": {
    "file-system": "^2.2.2",
    "fs-extra": "^3.0.1",
    "iban": "0.0.8",
    "moment": "^2.18.1",
    "node-datetime": "^1.0.0",
    "node-rsa": "^0.4.2",
    "randomstring": "^1.1.5",
    "request-promise": "^4.2.1",
    "restify": "^4.3.0",
    "typescript": "^2.3.2"
  },
  "devDependencies": {
    "@types/jest": "^19.2.3",
    "@types/node": "^7.0.18",
    "babel-jest": "^20.0.0",
    "jest": "^20.0.3",
    "ts-jest": "^20.0.3"
  },
  "scripts": {
    "prepublish": "npm run tsc",
    "test": "jest --coverage",
    "tsc": "tsc",
    "createTypes": "dts-generator --name bunq-api --baseDir ./src  --out dist/bunq-api.d.ts index.ts",
    "createKey": "node dist/createKey.js",
    "installKey": "node dist/installKey.js",
    "createDeviceServer": "node dist/createDeviceServer.js",
    "createSession": "node dist/createSession.js",
    "updateSession": "node dist/updateSession.js",
    "requestUser": "node dist/requestUser.js",
    "showAccount": "node dist/showAccount.js",
    "requestPayments": "node dist/requestPayments.js",
    "sendPayment": "node dist/sendPayment.js",
    "installNotification": "node dist/installNotification.js",
    "runCallbackServer": "node dist/runCallbackServer.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cofdev0/bunq-api.git"
  },
  "keywords": [
    "bunq",
    "api",
    "bank"
  ],
  "author": "cofdev0",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cofdev0/bunq-api"
  },
  "homepage": "https://github.com/cofdev0/bunq-api"
}
