{
    "name": "node-calendly",
    "version": "1.0.10",
    "description": "Node module to access calendly api.",
    "main": "./lib/Calendly.js",
    "types": "lib/Calendly.d.ts",
    "engines": {
        "node": ">=17.5.0"
    },
    "scripts": {
        "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
        "format": "prettier --write \"src/**/*.ts\"",
        "build": "tsc",
        "dev": "ts-node-dev ./src/index.ts",
        "test": "jest --config jestconfig.json",
        "prepare": "npm run build",
        "prepublishOnly": "npm test && npm run lint",
        "preversion": "npm run lint",
        "version": "npm run format && git add -A",
        "postversion": "git push && git push --tags",
        "lint": "tslint -c tslint.json -p tsconfig.json --fix",
        "npmpublish": "npm publish",
        "patch": "npm version patch && npm run npmpublish"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/y-core-engineering/node-calendly.git"
    },
    "keywords": [
        "calendly",
        "node",
        "api",
        "typescript",
        "nodejs"
    ],
    "author": "Sebastian Herden <developer@y-core.de>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/y-core-engineering/node-calendly/issues"
    },
    "homepage": "https://github.com/y-core-engineering/node-calendly#readme",
    "devDependencies": {
        "@types/jest": "^29.0.3",
        "@types/node": "^18.7.18",
        "@types/stopcock": "^1.1.1",
        "dotenv": "^16.0.2",
        "jest": "^29.0.3",
        "prettier": "^2.7.1",
        "ts-jest": "^29.0.1",
        "ts-node-dev": "^2.0.0",
        "tslint": "^6.1.3",
        "tslint-config-prettier": "^1.18.0",
        "typescript": "^4.8.3"
    },
    "files": [
        "lib/**/*"
    ],
    "dependencies": {
        "stopcock": "^1.1.0",
        "winston": "^3.10.0"
    }
}
