{
    "name": "hapi-auth-azureb2c",
    "version": "1.0.1",
    "description": "Hapi auth plugin for Azure AAD B2C",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "watch": "node ./node_modules/typescript/bin/tsc -p . -w",
        "build": "node ./node_modules/typescript/bin/tsc -p .",
        "test": "node ./node_modules/jest/bin/jest.js",
        "tslint": "node ./node_modules/tslint/bin/tslint -p ./tsconfig.json",
        "precommit": "npm test && npm run tslint",
        "preversion": "npm run precommit",
        "postversion": "npm publish"
    },
    "author": "sseiber",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git@github.com:sseiber/hapi-auth-azureb2c.git"
    },
    "config": {},
    "dependencies": {
        "@hapi/boom": "^9.0.0",
        "@hapi/hapi": "^19.1.1",
        "fs-extra": "^8.1.0",
        "jsonwebtoken": "^8.5.1",
        "lodash.get": "^4.4.2",
        "nconf": "^0.10.0"
    },
    "devDependencies": {
        "@types/jest": "^25.1.3",
        "@types/nconf": "0.10.0",
        "@types/node": "^13.7.7",
        "jest": "^25.1.0",
        "ts-jest": "^25.2.1",
        "tslint": "^5.20.1",
        "typescript": "^3.8.3"
    },
    "jest": {
        "rootDir": "./src/",
        "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
        "moduleFileExtensions": [
            "ts",
            "tsx",
            "js",
            "json"
        ],
        "transform": {
            ".tsx?": "ts-jest"
        },
        "moduleNameMapper": {
            "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./__mocks__/fileMock.js"
        }
    }
}
