UNPKG

@fjedi/zabbix-client

Version:
66 lines 1.48 kB
{ "name": "@fjedi/zabbix-client", "version": "2.0.0", "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:fjedi/zabbix-client.git" }, "keywords": [ "zabbix", "api", "typescript" ], "author": "Alexander Radyushin (https://github.com/fjedi)", "license": "MIT", "dependencies": { "axios": "*" }, "devDependencies": { "@types/cors": "^2.8.13", "@types/express": "^4.17.17", "@types/jest": "^29.5.2", "body-parser": "^1.20.2", "cors": "^2.8.5", "express": "^4.18.2", "jest": "^29.5.0", "rimraf": "^5.0.1", "ts-jest": "^29.1.0", "tslint": "^5.20.1", "typescript": "^5.1.3" }, "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 ] } } } } }