{
    "name": "@tsow/ow-attest",
    "version": "0.0.17-development",
    "description": "",
    "keywords": [],
    "main": "dist/ow-attest.umd.js",
    "module": "dist/ow-attest.es5.js",
    "typings": "dist/types/ow-attest.d.ts",
    "files": [
        "dist"
    ],
    "author": "Tim Speelman <timspeelman@live.nl>",
    "repository": {
        "type": "git",
        "url": "https://github.com/TimSpeelman/ow-attest"
    },
    "license": "MIT",
    "engines": {
        "node": ">=6.0.0"
    },
    "scripts": {
        "lint": "tslint  --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
        "prebuild": "rimraf dist",
        "build": "tsc --module commonjs && rollup -c rollup.config.ts",
        "start": "rollup -c rollup.config.ts -w",
        "test": "mocha --require ts-node/register ./test/**/*.ts",
        "test:watch": "jest --coverage --watch",
        "test:prod": "npm run lint && npm run test -- --no-cache",
        "deploy-docs": "ts-node tools/gh-pages-publish",
        "report-coverage": "cat ./coverage/lcov.info | coveralls",
        "commit": "git-cz",
        "semantic-release": "semantic-release",
        "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
        "precommit": "lint-staged",
        "travis-deploy-once": "travis-deploy-once",
        "exclient": "ts-node -P ./tsconfig.commonjs.json ./src/example/run_client.ts",
        "kvk": "ts-node -P ./tsconfig.commonjs.json ./src/example/run_kvk_server.ts",
        "brp": "ts-node -P ./tsconfig.commonjs.json ./src/example/run_brp_server.ts"
    },
    "lint-staged": {
        "{src,test}/**/*.ts": [
            "prettier --write",
            "git add"
        ]
    },
    "config": {
        "commitizen": {
            "path": "node_modules/cz-conventional-changelog"
        }
    },
    "jest": {
        "transform": {
            ".(ts|tsx)": "ts-jest"
        },
        "testEnvironment": "node",
        "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
        "moduleFileExtensions": [
            "ts",
            "tsx",
            "js"
        ],
        "coveragePathIgnorePatterns": [
            "/node_modules/",
            "/test/"
        ],
        "coverageThreshold": {
            "global": {
                "branches": 90,
                "functions": 95,
                "lines": 95,
                "statements": 95
            }
        },
        "collectCoverageFrom": [
            "src/*.{js,ts}"
        ]
    },
    "prettier": {
        "semi": false,
        "singleQuote": true
    },
    "commitlint": {
        "extends": [
            "@commitlint/config-conventional"
        ]
    },
    "devDependencies": {
        "@commitlint/cli": "^7.1.2",
        "@commitlint/config-conventional": "^7.1.2",
        "@types/chai": "^4.1.7",
        "@types/cors": "^2.8.5",
        "@types/express": "^4.17.0",
        "@types/mocha": "^5.2.7",
        "@types/node": "^10.11.0",
        "@types/sinon": "^7.0.13",
        "@types/uuid": "^3.4.4",
        "chai": "^4.2.0",
        "colors": "^1.3.2",
        "commitizen": "^3.0.0",
        "coveralls": "^3.0.2",
        "cross-env": "^5.2.0",
        "cz-conventional-changelog": "^2.1.0",
        "dts-generator": "^3.0.0",
        "husky": "^1.0.1",
        "jest-config": "^23.6.0",
        "lint-staged": "^8.0.0",
        "lodash.camelcase": "^4.3.0",
        "mocha": "^6.2.0",
        "prettier": "^1.14.3",
        "prompt": "^1.0.0",
        "replace-in-file": "^3.4.2",
        "rimraf": "^2.6.2",
        "rollup": "^0.67.0",
        "rollup-plugin-commonjs": "^9.1.8",
        "rollup-plugin-json": "^3.1.0",
        "rollup-plugin-node-resolve": "^3.4.0",
        "rollup-plugin-sourcemaps": "^0.4.2",
        "rollup-plugin-typescript2": "^0.22.0",
        "semantic-release": "^15.13.19",
        "shelljs": "^0.8.3",
        "sinon": "^7.3.2",
        "source-map-loader": "^0.2.4",
        "travis-deploy-once": "^5.0.9",
        "ts-jest": "^23.10.2",
        "ts-node": "^8.3.0",
        "tslint": "^5.11.0",
        "tslint-config-prettier": "^1.15.0",
        "tslint-config-standard": "^8.0.1",
        "typescript": "^3.5.2"
    },
    "dependencies": {
        "axios": "^0.19.0",
        "body-parser": "^1.19.0",
        "btoa": "^1.2.1",
        "cors": "^2.8.5",
        "express": "^4.17.1",
        "uuid": "^3.3.2"
    },
    "publishConfig": {
        "access": "public"
    }
}