@smithy/shared-ini-file-loader
Advanced tools
+16
-14
@@ -167,10 +167,4 @@ 'use strict'; | ||
| Object.defineProperty(exports, "getSSOTokenFromFile", { | ||
| enumerable: true, | ||
| get: function () { return getSSOTokenFromFile.getSSOTokenFromFile; } | ||
| }); | ||
| Object.defineProperty(exports, "readFile", { | ||
| enumerable: true, | ||
| get: function () { return readFile.readFile; } | ||
| }); | ||
| exports.getSSOTokenFromFile = getSSOTokenFromFile.getSSOTokenFromFile; | ||
| exports.readFile = readFile.readFile; | ||
| exports.CONFIG_PREFIX_SEPARATOR = CONFIG_PREFIX_SEPARATOR; | ||
@@ -184,13 +178,21 @@ exports.DEFAULT_PROFILE = DEFAULT_PROFILE; | ||
| exports.parseKnownFiles = parseKnownFiles; | ||
| Object.keys(getHomeDir).forEach(function (k) { | ||
| if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, { | ||
| Object.prototype.hasOwnProperty.call(getHomeDir, '__proto__') && | ||
| !Object.prototype.hasOwnProperty.call(exports, '__proto__') && | ||
| Object.defineProperty(exports, '__proto__', { | ||
| enumerable: true, | ||
| get: function () { return getHomeDir[k]; } | ||
| value: getHomeDir['__proto__'] | ||
| }); | ||
| Object.keys(getHomeDir).forEach(function (k) { | ||
| if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = getHomeDir[k]; | ||
| }); | ||
| Object.keys(getSSOTokenFilepath).forEach(function (k) { | ||
| if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, { | ||
| Object.prototype.hasOwnProperty.call(getSSOTokenFilepath, '__proto__') && | ||
| !Object.prototype.hasOwnProperty.call(exports, '__proto__') && | ||
| Object.defineProperty(exports, '__proto__', { | ||
| enumerable: true, | ||
| get: function () { return getSSOTokenFilepath[k]; } | ||
| value: getSSOTokenFilepath['__proto__'] | ||
| }); | ||
| Object.keys(getSSOTokenFilepath).forEach(function (k) { | ||
| if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = getSSOTokenFilepath[k]; | ||
| }); |
+6
-6
| { | ||
| "name": "@smithy/shared-ini-file-loader", | ||
| "version": "4.4.3", | ||
| "version": "4.4.4", | ||
| "dependencies": { | ||
| "@smithy/types": "^4.12.0", | ||
| "@smithy/types": "^4.12.1", | ||
| "tslib": "^2.6.2" | ||
@@ -12,3 +12,3 @@ }, | ||
| "downlevel-dts": "0.10.1", | ||
| "rimraf": "5.0.10", | ||
| "premove": "4.0.0", | ||
| "typedoc": "0.23.23" | ||
@@ -21,5 +21,5 @@ }, | ||
| "build:types": "yarn g:tsc -p tsconfig.types.json", | ||
| "build:types:downlevel": "rimraf dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4", | ||
| "stage-release": "rimraf ./.release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz", | ||
| "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0", | ||
| "build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4", | ||
| "stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz", | ||
| "clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo", | ||
| "lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"", | ||
@@ -26,0 +26,0 @@ "format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"", |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
51081
0.47%11
-8.33%Updated