victory-test-package 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 (2) hide show
  1. package/index.js +13 -0
  2. package/package.json +18 -0
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ const app = require ('express')();
2
+ const port = 5660
3
+
4
+ const lower = (value) => {
5
+ const item = (value).toLowerCase()
6
+ return item;
7
+ }
8
+
9
+ module.exports = { lower}
10
+ app.listen(port, ()=>{
11
+ console.log(`running on ${port}`);
12
+
13
+ })
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "victory-test-package",
3
+ "version": "1.0.0",
4
+ "description": "this is for play play, i go still delete am",
5
+ "keywords": [
6
+ "Victory"
7
+ ],
8
+ "license": "ISC",
9
+ "author": "Ajayi Victory",
10
+ "type": "commonjs",
11
+ "main": "index.js",
12
+ "scripts": {
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
+ },
15
+ "dependencies": {
16
+ "express": "^5.2.1"
17
+ }
18
+ }