-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 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
{
"name": "@lomray/microservices-cli",
"version": "1.0.0",
"description": "CLI for working with microservices",
"main": "index.js",
"type": "module",
"keywords": [
"js",
"microservice",
"cli"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/microservices-cli.git"
},
"bugs": {
"url": "https://github.com/Lomray-Software/microservices-cli/issues"
},
"homepage": "https://github.com/Lomray-Software/microservices-cli",
"author": "Mikhail Yarmaliuk",
"license": "Apache-2.0",
"scripts": {},
"dependencies": {
"@actions/core": "^1.11.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"fs-extra": "^11.3.2",
"inquirer": "^12.10.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"husky": "^9.1.7",
"semantic-release": "^25.0.1"
},
"bin": {
"microservices": "index.js"
}
}