Skip to content

Commit 7aa5d72

Browse files
initialize project with package.json and entry point
0 parents  commit 7aa5d72

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

bin/index.js

Whitespace-only changes.

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "create-node-spark",
3+
"version": "1.0.0",
4+
"description": "CLI tool to scaffold a Node.js backend",
5+
"license": "MIT",
6+
"author": "talhabilal",
7+
"type": "module",
8+
"bin": {
9+
"create-node-backend": "bin/index.js"
10+
},
11+
"keywords": [
12+
"nodejs",
13+
"cli",
14+
"scaffolding",
15+
"backend",
16+
"express",
17+
"mongoose",
18+
"mongodb",
19+
"auth",
20+
"multer",
21+
"api",
22+
"create-node-backend",
23+
"project-generator",
24+
"node-backend-generator",
25+
"starter-template",
26+
"npm-package"
27+
],
28+
"repository": {
29+
"type": "git",
30+
"url": "git+https://github.com/talhabilal-dev/create-node-spark.git"
31+
},
32+
"bugs": {
33+
"url": "https://github.com/talhabilal-dev/create-node-spark/issues"
34+
},
35+
"homepage": "https://github.com/talhabilal-dev/create-node-spark#readme",
36+
"dependencies": {}
37+
}
38+

0 commit comments

Comments
 (0)