-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 888 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 888 Bytes
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
{
"name": "setup-node-api",
"version": "1.1.1",
"description": "CLI to create a Node.js Express API instantly",
"type": "commonjs",
"main": "bin/cli.js",
"bin": {
"setup-node-api": "bin/cli.js"
},
"keywords": [
"cli",
"nodejs",
"express",
"api",
"scaffold",
"boilerplate",
"generator",
"backend",
"npx"
],
"author": "codehassoul",
"license": "MIT",
"homepage": "https://github.com/codehassoul/setup-node-api#readme",
"bugs": {
"url": "https://github.com/codehassoul/setup-node-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/codehassoul/setup-node-api.git"
},
"files": [
"bin",
"src",
"templates"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.3",
"inquirer": "^13.3.2",
"ora": "^9.3.0"
}
}