@tvg-mar/promos-context 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.
- package/README.md +18 -0
- package/index.js +6 -0
- package/package.json +11 -0
- package/test/smoke.js +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @tvg-mar/promos-context
|
|
2
|
+
|
|
3
|
+
Promotions context: campaign state, providers, selectors and tracking
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
Early internal release. Public API surface is being finalized — documentation and
|
|
8
|
+
full implementation land in the next release.
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install @tvg-mar/promos-context
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tvg-mar/promos-context",
|
|
3
|
+
"version": "9.9.9",
|
|
4
|
+
"description": "Promotions context: campaign state, providers, selectors and tracking",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": { "test": "node test/smoke.js" },
|
|
7
|
+
"files": ["index.js", "README.md", "test"],
|
|
8
|
+
"keywords": ["promos", "context", "campaigns", "tracking", "state", "enterprise"],
|
|
9
|
+
"engines": { "node": ">=14" },
|
|
10
|
+
"license": "MIT"
|
|
11
|
+
}
|
package/test/smoke.js
ADDED