Create package.json
Browse files- package.json +24 -0
package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "example-project",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "An example Node.js project",
|
| 5 |
+
"main": "index.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node index.js",
|
| 8 |
+
"test": "echo \"Error: no test specified\" && exit 1"
|
| 9 |
+
},
|
| 10 |
+
"repository": {
|
| 11 |
+
"type": "git",
|
| 12 |
+
"url": "https://github.com/username/example-project.git"
|
| 13 |
+
},
|
| 14 |
+
"keywords": [
|
| 15 |
+
"node",
|
| 16 |
+
"example"
|
| 17 |
+
],
|
| 18 |
+
"author": "Your Name",
|
| 19 |
+
"license": "MIT",
|
| 20 |
+
"dependencies": {
|
| 21 |
+
},
|
| 22 |
+
"devDependencies": {
|
| 23 |
+
}
|
| 24 |
+
}
|