{
    "name": "@tpark/vertex",
    "version": "1.0.72",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
        "build": "rm -rf dist && tsc --declaration",
        "prepublish": "npm run build",
        "test": "npm run build && DEV=true TEST=true jest dist --coverage --testTimeout 20000",
        "watch": "nodemon"
    },
    "author": "Tim Park",
    "dependencies": {
        "object-hash": "^2.1.1"
    },
    "devDependencies": {
        "@types/jest": "^26.0.20",
        "@types/node": "^14.14.35",
        "@types/object-hash": "^2.1.0",
        "husky": "^5.1.3",
        "jest": "^26.6.3",
        "nodemon": "^2.0.7",
        "ts-jest": "^26.5.3",
        "ts-node-dev": "^1.1.6",
        "tslint": "^6.1.3",
        "tslint-config-prettier": "^1.18.0",
        "typescript": "^4.2.3"
    },
    "nodemonConfig": {
        "ignore": [
            "**/*.test.ts",
            "**/*.spec.ts",
            ".git"
        ],
        "watch": [
            "src",
            "node_modules"
        ],
        "exec": "npm run-script test",
        "ext": "ts"
    }
}
