signals-embed 0.0.1-security → 1.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 signals-embed might be problematic. Click here for more details.
- package/README.md +2 -5
- package/package.json +35 -6
- package/signals-embed.js +34 -0
package/README.md
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
#
|
|
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=signals-embed for more information.
|
|
1
|
+
# signals-embed
|
|
2
|
+
Один JS со «снимком» сайта Signals Research для вставки в Google Sites без iframe и без внешних запросов.
|
package/package.json
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "signals-embed",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "signals-embed",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Встраиваемый автономный снапшот сайта Signals Research для Google Sites (без iframe, без внешних запросов)",
|
|
5
|
+
"main": "signals-embed.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "node tools/build.js",
|
|
9
|
+
"publish:patch": "npm version patch && npm publish --access public"
|
|
10
|
+
},
|
|
11
|
+
"author": "Вы",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"dependencies": {},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"jsdom": "^24.0.0",
|
|
16
|
+
"node-fetch": "^3.3.2",
|
|
17
|
+
"clean-css": "^5.3.3",
|
|
18
|
+
"mime-types": "^2.1.35"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"signals-embed.js",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"embed",
|
|
29
|
+
"google-sites",
|
|
30
|
+
"jsdelivr",
|
|
31
|
+
"snapshot",
|
|
32
|
+
"no-iframe",
|
|
33
|
+
"autonomous"
|
|
34
|
+
]
|
|
35
|
+
}
|