-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "moleculer-http-client",
"version": "0.4.3",
"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": "^29.1.2",
"coveralls": "^3.1.0",
"jest": "^29.1.2",
"jest-cli": "^29.1.2",
"moleculer": "^0.14.13",
"moleculer-repl": "^0.7.3",
"moleculer-web": "^0.10.4",
"nodemon": "^2.0.7",
"prettier": "^2.7.1"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 10.x.x"
},
"dependencies": {
"got": "^11.8.6",
"kleur": "^4.1.5",
"lodash": "^4.17.21"
}
}