@customerio/cli 0.0.0-bootstrap
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/LICENSE +38 -0
- package/README.md +3 -0
- package/package.json +20 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
Copyright 2025, PPeaberry Software, Inc. d/b/a Customer.io
|
|
8
|
+
|
|
9
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
+
you may not use this file except in compliance with the License
|
|
11
|
+
and the Commons Clause Restriction. You may obtain a copy of the
|
|
12
|
+
License at
|
|
13
|
+
|
|
14
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software
|
|
17
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
18
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
19
|
+
See the License for the specific language governing permissions and
|
|
20
|
+
limitations under the License.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
Commons Clause Restriction
|
|
25
|
+
The Software is provided to you by the Licensor under the License,
|
|
26
|
+
as defined below, subject to the following condition.
|
|
27
|
+
|
|
28
|
+
Without limiting other conditions in the License, the grant of rights
|
|
29
|
+
under the License will not include, and the License does not grant to you,
|
|
30
|
+
the right to Sell the Software.
|
|
31
|
+
|
|
32
|
+
For purposes of the foregoing, "Sell" means practicing any or all of
|
|
33
|
+
the rights granted to you under the License to provide to third parties,
|
|
34
|
+
for a fee or other consideration (including without limitation fees for
|
|
35
|
+
hosting or consulting/ support services related to the Software), a product
|
|
36
|
+
or service whose value derives, entirely or substantially, from the
|
|
37
|
+
functionality of the Software. Any license notice or attribution required
|
|
38
|
+
by the License must also include this Commons Clause Restriction notice.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@customerio/cli",
|
|
3
|
+
"version": "0.0.0-bootstrap",
|
|
4
|
+
"description": "Bootstrap placeholder for Customer.io CLI trusted publishing setup",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
12
|
+
"type": "commonjs",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/customerio/cli.git"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
}
|
|
20
|
+
}
|