-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.29 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
{
"name": "moleculer-axios",
"version": "0.1.3",
"description": "Axios based HTTP client for Moleculer services",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"moleculer",
"microservice",
"axios"
],
"repository": {
"type": "git",
"url": "https://github.com/adam-mccormick/moleculer-axios.git"
},
"author": "Adam McCormick",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.0"
},
"devDependencies": {
"benchmarkify": "^2.1.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"jest": "^28.1.0",
"jest-cli": "^28.1.0",
"moleculer": "^0.14.0",
"nodemon": "^2.0.16",
"npm-check": "^4.1.4"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"axios": "^0.27.2",
"lodash": "^4.17.21",
"qs": "^6.7.0"
}
}