{
  "name": "@debtpanel/partner-link",
  "version": "3.0.1",
  "description": "A Node module to allow connection to the Partner Link API.",
  "license": "UNLICENSED",
  "repository": {
    "type": "git",
    "url": "https://github.com/DebtPanel/partner-link"
  },
  "main": "./dist/index.js",
  "typings": "./dist/index.d.ts",
  "scripts": {
    "format": "prettier --write \"**/*.ts\"",
    "start": "npm run compile && node ./dist/test.js",
    "compile": "rimraf dist && tsc -d",
    "prepare": "npm run compile",
    "lint": "tslint -p tsconfig.json -c tslint.json",
    "test": "jest",
    "release": "standard-version && git push --follow-tags origin master && npm publish"
  },
  "dependencies": {
    "moment": "^2.22.2",
    "request": "^2.87.0",
    "request-promise-native": "^1.0.5",
    "xml2js": "^0.4.19"
  },
  "devDependencies": {
    "@types/jest": "^23.1.2",
    "@types/node": "^10.3.6",
    "@types/request": "^2.47.1",
    "@types/request-promise-native": "^1.0.15",
    "@types/xml2js": "^0.4.3",
    "jest": "^23.1.2",
    "prettier": "^1.13.6",
    "rimraf": "^2.6.2",
    "standard-version": "4.3.0",
    "ts-jest": "^22.4.6",
    "ts-node": "^7.0.0",
    "tslint": "^5.10.0",
    "typescript": "^2.9.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "src",
    "testRegex": ".spec.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "coverageDirectory": "../coverage",
    "coverageReporters": [
      "html"
    ]
  }
}
