sanoangella 1.0.3
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 +10 -0
- package/index.js +4 -0
- package/package.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @sano-angella/my-unique-greet-tool
|
|
2
|
+
|
|
3
|
+
A simple school project to demonstrate creating and publishing an npm package.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
npm install @sano-angella/my-unique-greet-tool
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
const sayHello = require('@sano-angella/my-unique-greet-tool');
|
|
10
|
+
console.log(sayHello('Angella'));
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sanoangella",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "A simple greeting utility for a school assignment",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"author": "Sano Angella",
|
|
10
|
+
"license": "MIT"
|
|
11
|
+
}
|