-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
71 lines (71 loc) · 1.62 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
65
66
67
68
69
70
71
{
"name": "moleculer-io",
"version": "2.2.0",
"description": "An API GateWay service for Moleculer using Socket.IO",
"main": "src/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"dev": "nodemon examples/index.js",
"dev:client": "iola io ws://localhost:3000",
"ci": "jest --watch",
"deps": "npm-check -u",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moleculerjs/moleculer-io.git"
},
"keywords": [
"socket.io",
"moleculer",
"websocket",
"microservice",
"API Gateway"
],
"author": "MoleculerJS",
"license": "MIT",
"dependencies": {
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"socket.io": "^4.5.1"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.5.0",
"express": "^4.18.1",
"jest": "^27.4.7",
"jest-cli": "^27.4.7",
"moleculer": "^0.14.22",
"moleculer-repl": "^0.7.1",
"moleculer-web": "^0.10.4",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"socket.io-client": "^4.5.1",
"socket.io-redis": "^6.1.1",
"winston": "^3.8.1"
},
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.14.0"
},
"engines": {
"node": ">= 10.x.x"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}