forked from Lomray-Software/microservices-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 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
{
"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.10.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.9",
"unzipper": "^0.10.14"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"husky": "^8.0.3",
"semantic-release": "^21.0.7"
},
"bin": {
"microservices": "index.js"
}
}