-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@soapjs/soap-cli",
"version": "0.0.4",
"description": "An extensible command-line interface for streamlined project setup, configuration, and management, supporting interactive sessions and a variety of development environments.",
"homepage": "https://docs.soapjs.com",
"repository": "https://github.com/soapjs/soap-cli",
"bin": {
"soap": "./build/soap.js"
},
"main": "build/soap.js",
"types": "build/soap.d.ts",
"license": "MIT",
"author": "Radoslaw Kamysz <radoslaw.kamysz@gmail.com>",
"keywords": [
"clean",
"architecture",
"clean architecture",
"api design",
"framework",
"code generation",
"framework",
"typescript",
"microservices",
"backend",
"cli"
],
"scripts": {
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "npm run clean && tsc -b && chmod +x ./build/soap.js",
"prepublish": "npm run clean && tsc --project tsconfig.build.json"
},
"dependencies": {
"@soapjs/soap-cli-common": "^0.0.6",
"@soapjs/soap-cli-interactive": "^0.0.5",
"axios": "^1.6.7",
"chalk": "4.1.2",
"change-case": "^4.1.2",
"commander": "^10.0.0",
"nanoid": "3.3.4"
},
"devDependencies": {
"@types/node": "^18.14.1",
"typescript": "^4.5.4"
}
}