-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "express-api-cli-tool",
"version": "2.0.0",
"author": "Thomas Alberto",
"description": "Express API CLI is a Command Line Interface (CLI) tool designed to make it easier and faster to create RESTful API projects using Express JS.",
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/xRiot45/express-cli"
},
"homepage": "https://express-js-cli.vercel.app/",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/xRiot45"
},
"keywords": [
"express",
"cli",
"node",
"javascript",
"typescript"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.js\" --fix",
"format": "prettier --write \"**/*.js\"",
"prepare": "husky"
},
"bin": {
"express": "./bin/index.js"
},
"type": "module",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"inquirer": "^12.4.1",
"ora": "^8.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/js": "^9.20.0",
"@types/shelljs": "^0.8.15",
"eslint": "^9.20.1",
"globals": "^15.15.0",
"husky": "^9.1.7",
"prettier": "^3.5.1"
}
}