{
  "name": "express-auth-middle",
  "version": "1.1.2",
  "description": "express-auth-middle a basic auth middleware for expressjs written in typescript",
  "main": "./build/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/johndcarmichael/express-auth-middle.git"
  },
  "keywords": [
    "express",
    "authentication middleware",
    "basic auth",
    "x-auth"
  ],
  "author": "John Carmichael",
  "license": "MIT",
  "scripts": {
    "install:githooks": "cp ./githooks/* .git/hooks",
    "test": "npm run lint && npm run test:unit",
    "test:unit": "npm run build && jest",
    "test:unit:single": "jest --collect-coverage false",
    "lint": "tslint --project tsconfig.json --fix",
    "lint:fix": "tslint --project tsconfig.json --fix",
    "build:tocs": "npx doctoc .",
    "build": "rm -fR ./build && tsc -p . --declaration --declarationDir build",
    "build:watch": "tsc --watch -p .",
    "start": "node cli.js",
    "prepublishOnly": "npm run lint && npm run test"
  },
  "dependencies": {
    "basic-auth": "^2.0.1"
  },
  "devDependencies": {
    "@babel/types": "^7.9.6",
    "@types/basic-auth": "^1.1.3",
    "@types/jest": "^25.2.1",
    "@types/node": "^13.11.1",
    "codecov": "^3.6.5",
    "eslint": "^6.8.0",
    "hasha": "^5.2.0",
    "jest": "^25.3.0",
    "ts-jest": "^25.3.1",
    "tslint": "^6.1.1",
    "typescript": "^3.9.2"
  }
}
