@insiderintelligence/googleadmanager 9.9.9
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 @insiderintelligence/googleadmanager might be problematic. Click here for more details.
- package/README.md +17 -0
- package/index.js +6 -0
- package/package.json +11 -0
- package/test/smoke.js +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @insiderintelligence/googleadmanager
|
|
2
|
+
|
|
3
|
+
Google Ad Manager ad slot components and configuration builders
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
Early internal release. Public API surface is being finalized.
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @insiderintelligence/googleadmanager
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@insiderintelligence/googleadmanager",
|
|
3
|
+
"version": "9.9.9",
|
|
4
|
+
"description": "Google Ad Manager ad slot components and configuration builders",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": { "test": "node test/smoke.js" },
|
|
7
|
+
"files": ["index.js", "README.md", "test"],
|
|
8
|
+
"keywords": ["google-ad-manager", "ads", "gpt", "slots", "components"],
|
|
9
|
+
"engines": { "node": ">=14" },
|
|
10
|
+
"license": "MIT"
|
|
11
|
+
}
|
package/test/smoke.js
ADDED