suman-malik-repo 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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +7 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Suman Malik Repo
2
+
3
+ A simple Node.js library that says hello to Suman Malik.
4
+
5
+ ## Usage
6
+
7
+ ```javascript
8
+ const sayHello = require('suman-malik-repo');
9
+ console.log(sayHello()); // Output: Hello, Suman Malik!
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ // index.js
2
+ function sayHello() {
3
+ return "Hello, Suman Malik!";
4
+ }
5
+
6
+ module.exports = sayHello;
7
+
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "suman-malik-repo",
3
+ "version": "1.0.0",
4
+ "description": "a test npm package for the first time",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "suman malik repo",
10
+ "license": "ISC",
11
+ "keywords": [
12
+ "say",
13
+ "hello"
14
+ ]
15
+ }