-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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
{
"name": "@munesoft/cli-to-api",
"version": "1.0.0",
"description": "Turn any CLI command into a REST API endpoint instantly",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cli-to-api": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest --runInBand",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts"
},
"keywords": ["cli", "api", "automation", "devtools", "wrapper", "rest", "http", "express"],
"author": "munesoft",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"winston": "^3.11.0",
"swagger-ui-express": "^5.0.0",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"uuid": "^9.0.0",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/jest": "^29.5.11",
"@types/swagger-ui-express": "^4.1.6",
"@types/morgan": "^1.9.9",
"@types/uuid": "^9.0.7",
"@types/inquirer": "^8.2.10",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"supertest": "^6.3.3",
"@types/supertest": "^6.0.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/munesoft/cli-to-api"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"templates/",
"README.md"
]
}