moleculer-http-client
Version:
HTTP client mixin that allows Moleculer services to communicate with remote REST APIs
65 lines (64 loc) • 1.58 kB
JSON
{
"name": "moleculer-http-client",
"version": "0.4.2",
"description": "HTTP client mixin that allows Moleculer services to communicate with remote REST APIs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "prettier --check 'src/**/*.js' 'test/**/*.js'",
"lint:fix": "prettier --write 'src/**/*.js' 'test/**/*.js'",
"coverall": "cat ./src/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"moleculer",
"microservice",
"microservices",
"http client",
"http-client",
"http-request",
"http request"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-http-client.git"
},
"author": "André Mazayev",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.14.0"
},
"devDependencies": {
"@types/got": "^9.6.11",
"@types/jest": "^26.0.23",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"moleculer": "^0.14.13",
"moleculer-repl": "^0.6.5",
"moleculer-web": "^0.9.1",
"nodemon": "^2.0.7",
"prettier": "^2.3.1"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 10.x.x"
},
"dependencies": {
"got": "^11.8.2",
"kleur": "^4.1.4",
"lodash": "^4.17.21"
}
}