luispatuleia-helloworld 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/hello-world.js +1 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# This is a simple package with a Hello World example!
|
package/hello-world.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("Hello World!");
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "luispatuleia-helloworld",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A simple Hello World example.",
|
|
5
|
+
"main": "hello-world.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"luispatuleia": "hello-world.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "node ./hello-world.js"
|
|
11
|
+
},
|
|
12
|
+
"author": "luispatuleia",
|
|
13
|
+
"license": "ISC"
|
|
14
|
+
}
|