-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "moleculer-repl",
"version": "0.7.4",
"description": "REPL module for Moleculer",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"check": "tsc --noEmit true",
"types": "tsc --emitDeclarationOnly true --noEmitOnError false",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"test": "jest --coverage"
},
"keywords": [
"microservices",
"microservice",
"moleculer"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-repl.git"
},
"types": "./types/index.d.ts",
"author": "MoleculerJS",
"license": "MIT",
"devDependencies": {
"eslint": "^8.24.0",
"jest": "^27.4.7",
"moleculer": "^0.14.23",
"nodemon": "^2.0.20"
},
"engines": {
"node": ">= 12.x.x"
},
"dependencies": {
"clui": "^0.3.6",
"commander": "^9.4.1",
"glob": "^7.1.7",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"pretty-bytes": "^5.6.0",
"string-argv": "^0.3.1",
"table": "^6.8.0",
"tiny-human-time": "^1.2.0",
"yargs-parser": "^21.1.1"
}
}