{
  "name": "@nxcd/datavalid-sdk",
  "version": "2.0.0",
  "description": "DataValid SDK for NodeJS",
  "main": "dist/index.js",
  "scripts": {
    "clean": "rm -rf ./dist",
    "test": "mocha --timeout 10000 --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
    "coverage": "nyc mocha --timeout 10000 --require ts-node/register --require source-map-support/register --recursive tests/**/*.test.ts",
    "lint": "tslint --project tsconfig.json",
    "build": "tsc",
    "build:debug": "npm run clean && npm run build -- --sourceMap",
    "build:clean": "npm run clean && npm run build",
    "build:watch": "tsc -w",
    "build:start": "npm run build:clean && npm start",
    "start": "node dist/index.js",
    "start:debug": "concurrently -s all \"tsc -w\" \"DEBUG=expresso:*,gg:* nodemon dist/index.js\"",
    "prepare": "npm run build:clean"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint"
    }
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "dist/**/*.*",
      "src/index.ts",
      "src/presentation/server.ts",
      "coverage",
      "**/*.test.ts"
    ],
    "reporter": [
      "text",
      "html",
      "lcov"
    ],
    "all": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nxcd/datavalid-node-sdk.git"
  },
  "keywords": [
    "datavalid",
    "serpro",
    "sdk"
  ],
  "author": "Lucas Santos <hello@lsantos.dev>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nxcd/datavalid-node-sdk/issues"
  },
  "homepage": "https://github.com/nxcd/datavalid-node-sdk#readme",
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "@types/nock": "^9.3.1",
    "@types/node": "^11.13.4",
    "chai": "^4.2.0",
    "concurrently": "^5.3.0",
    "husky": "^1.3.1",
    "lodash.merge": "^4.6.2",
    "mocha": "^8.1.3",
    "nock": "^13.0.4",
    "nodemon": "^2.0.4",
    "nyc": "^15.1.0",
    "ts-node": "^8.1.0",
    "tslint": "^6.1.3",
    "tslint-config-standard": "^8.0.1",
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "^3.4.3"
  },
  "dependencies": {
    "axios": "^0.20.0"
  },
  "files": [
    "dist/**/*"
  ]
}
