UNPKG

glpi-client

Version:
59 lines 1.67 kB
{ "name": "glpi-client", "version": "2.0.0", "description": "GLPI API Client written in Typescript", "main": "dist/index", "scripts": { "build": "rimraf dist && tsc", "watch": "rimraf dist && tsc -w", "prepublishOnly": "rimraf dist && tsc", "test": "NODE_ENV=testing jest", "test:cov": "NODE_ENV=testing jest --coverage", "test:e2e": "NODE_ENV=testing jest --detectOpenHandles --config ./test/jest-e2e.json" }, "repository": { "type": "git", "url": "git+https://github.com/aluisiora/glpi-typescript-client.git" }, "keywords": [ "glpi", "api", "typescript" ], "author": "Aluisio R. Amaral", "license": "MIT", "bugs": { "url": "https://github.com/aluisiora/glpi-typescript-client/issues" }, "homepage": "https://github.com/aluisiora/glpi-typescript-client#readme", "dependencies": { "axios": "*" }, "devDependencies": { "@types/cors": "^2.8.5", "@types/express": "^4.16.1", "@types/jest": "^24.0.13", "@types/node": "^8.10.49", "body-parser": "^1.19.0", "cors": "^2.8.5", "express": "^4.17.1", "jest": "^24.8.0", "rimraf": "^2.6.3", "ts-jest": "^24.0.2", "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" } }