-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.9 KB
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
72
73
74
{
"name": "@microfleet/cli",
"version": "2.0.0",
"description": "cli to access microservices over amqp through command line",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs"
}
},
"main": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"type": "module",
"bin": {
"m-amqp": "./bin/ms-cli.mjs"
},
"scripts": {
"test": "pnpm run lint && pnpm run test:e2e",
"test:e2e": "mdep test run",
"lint": "eslint ./src/*.mts",
"pretest": "pnpm run compile",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run compile",
"semantic-release": "semantic-release",
"prepare": "mdep install || true"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/microfleet/cli.git"
},
"keywords": [
"microservice",
"cli"
],
"author": "Vitaly Aminev <v@makeomatic.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microfleet/cli/issues"
},
"homepage": "https://github.com/microfleet/cli#readme",
"dependencies": {
"@microfleet/transport-amqp": "^17.2.8",
"common-errors": "^1.0.5",
"ms-conf": "^7.0.0",
"pino": "^7.9.2",
"yargs": "^17.4.0"
},
"devDependencies": {
"@makeomatic/deploy": "^12.6.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@types/yargs": "^17.0.10",
"c8": "^7.11.0",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"eslint": "^8.12.0",
"eslint-config-makeomatic": "^5.0.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^41.0.1",
"mocha": "^9.2.2",
"semantic-release": "^19.0.2",
"typescript": "^4.7.0-dev.20220328"
},
"files": [
"src",
"lib"
]
}