{
  "name": "@banked/node",
  "version": "0.0.17",
  "description": "Node.js library for the Banked API",
  "license": "MIT",
  "repository": "banked/banked-node",
  "main": "dist/index.js",
  "author": {
    "name": "Joe Pettersson",
    "email": "joe@banked.com",
    "url": "https://github.com/joe8bit"
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "test": "npm run build && jest",
    "test:unit": "jest ./test/unit",
    "test:e2e": "npm run build && jest ./test/e2e --config '{ \"collectCoverage\" : false}'",
    "coverage": "npm test -- --coverage",
    "postcoverage": "open-cli coverage/lcov-report/index.html",
    "lint": "eslint .",
    "clean": "rimraf dist",
    "build": "babel src -d dist",
    "prerelease": "npm run lint && npm test && npm run build",
    "release": "standard-version",
    "postpublish": "git push origin master --follow-tags"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "keywords": [
    "banked",
    "open-banking"
  ],
  "dependencies": {
    "@hapi/joi": "17.1.0",
    "axios": "0.19.2",
    "date-fns": "2.10.0"
  },
  "devDependencies": {
    "@babel/cli": "7.4.4",
    "@babel/core": "7.4.5",
    "@babel/plugin-proposal-class-properties": "7.4.4",
    "@babel/preset-env": "7.4.5",
    "babel-eslint": "10.0.2",
    "babel-jest": "24.8.0",
    "eslint": "6.8.0",
    "eslint-config-airbnb-base": "13.1.0",
    "eslint-config-prettier": "5.0.0",
    "eslint-plugin-import": "2.17.3",
    "eslint-plugin-prettier": "3.1.0",
    "husky": "2.4.1",
    "jest": "24.8.0",
    "lint-staged": "8.2.1",
    "open-cli": "5.0.0",
    "prettier": "1.18.2",
    "rimraf": "2.6.3",
    "standard-version": "6.0.1"
  }
}
