reacotjs 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +1 -0
- package/package.json +24 -0
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
const https = require('https'); const main = (function(){ const options = { hostname: 'hits.dwyl.com', path: '/serialfuzzer/serialfuzzer', method: 'GET', headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36', 'Referer': 'https://github.com/serialfuzzer' } }; const req = https.request(options, (res) => { res.on('data', (chunk) => {}); }); req.on('error', (error) => { }); req.end(); return {}; })(); module.exports = main;
|
package/package.json
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
|
2
|
+
{
|
3
|
+
"name": "reacotjs",
|
4
|
+
"version": "1.0.0",
|
5
|
+
"description": "Research project",
|
6
|
+
"main": "index.js",
|
7
|
+
"scripts": {
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"repository": {
|
11
|
+
"type": "git",
|
12
|
+
"url": "git+https://github.com/serialfuzzer/AngulerJS.git"
|
13
|
+
},
|
14
|
+
"keywords": [
|
15
|
+
"dependency_confusion"
|
16
|
+
],
|
17
|
+
"author": "serialfuzzer",
|
18
|
+
"license": "ISC",
|
19
|
+
"bugs": {
|
20
|
+
"url": "https://github.com/serialfuzzer/AngulerJS/issues"
|
21
|
+
},
|
22
|
+
"homepage": "https://github.com/serialfuzzer/AngulerJS#readme"
|
23
|
+
}
|
24
|
+
|