{
    "name": "zabbix-client",
    "version": "1.2.7",
    "description": "Zabbix Javascript API Client",
    "main": "dist/index",
    "scripts": {
        "build": "rimraf dist && tsc",
        "watch": "rimraf dist && tsc -w",
        "prepublishOnly": "npm test && rimraf dist && tsc",
        "test": "NODE_ENV=testing jest",
        "test:cov": "NODE_ENV=testing jest --coverage",
        "test:e2e": "NODE_ENV=testing jest --config ./test/jest-e2e.json"
    },
    "repository": {
        "type": "git",
        "url": "git@github.com:aluisiora/zabbix-typescript-client.git"
    },
    "keywords": [
        "zabbix",
        "api",
        "typescript"
    ],
    "author": "Aluisio R. Amaral",
    "license": "MIT",
    "dependencies": {
        "axios": "*"
    },
    "devDependencies": {
        "@types/cors": "^2.8.5",
        "@types/express": "^4.16.1",
        "@types/jest": "^23.3.14",
        "body-parser": "^1.19.0",
        "cors": "^2.8.5",
        "express": "^4.17.1",
        "jest": ">=22.0.0 <24.0.0",
        "rimraf": "^2.6.3",
        "ts-jest": "^23.10.5",
        "tslint": "^5.17.0",
        "typescript": "^3.5.1"
    },
    "jest": {
        "moduleFileExtensions": [
            "js",
            "json",
            "ts"
        ],
        "rootDir": "src",
        "testRegex": ".spec.ts$",
        "transform": {
            "^.+\\.(t|j)s$": "ts-jest"
        },
        "coverageDirectory": "../coverage",
        "globals": {
            "ts-jest": {
                "diagnostics": {
                    "ignoreCodes": [
                        2345,
                        6059,
                        18002,
                        18003
                    ]
                }
            }
        }
    }
}