@zuplo/lint-win32-x64 7.4.0

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.txt ADDED
@@ -0,0 +1,80 @@
1
+ # End User License Agreement (EULA)
2
+
3
+ This End User License Agreement ("Agreement") is a legal agreement between you
4
+ ("User") and **Zuplo, Inc.**, a Delaware corporation ("Zuplo"), governing the
5
+ use of Zuplo’s proprietary software tool designed for local development (the
6
+ "Software").
7
+
8
+ By installing, copying, or otherwise using the Software, you agree to be bound
9
+ by the terms of this Agreement. If you do not agree, do not install or use the
10
+ Software.
11
+
12
+ ## 1. License Grant
13
+
14
+ Subject to the terms of this Agreement, Zuplo grants you a limited,
15
+ non-exclusive, non-transferable, non-sublicensable license to use the Software
16
+ **solely for internal local development purposes** and **only if you are an
17
+ active customer of Zuplo**.
18
+
19
+ ## 2. Restrictions
20
+
21
+ You may **not**:
22
+
23
+ - Distribute, sublicense, lease, rent, or otherwise make the Software available
24
+ to any third party;
25
+ - Use the Software for any commercial purpose other than in connection with your
26
+ authorized use of Zuplo services;
27
+ - Reverse engineer, decompile, disassemble, or attempt to derive the source code
28
+ of the Software;
29
+ - Use the Software if you are not a current customer of Zuplo.
30
+
31
+ ## 3. Intellectual Property Ownership
32
+
33
+ All intellectual property rights in and to the Software — including but not
34
+ limited to all code, documentation, interfaces, design, and trademarks — are and
35
+ shall remain the exclusive property of Zuplo and its licensors.
36
+ This Agreement does not grant you any rights, title, or interest in or to any
37
+ trademarks, trade secrets, copyrights, patents, or other intellectual property
38
+ owned by Zuplo, except for the limited license expressly set forth in Section 1.
39
+
40
+ Any feedback, suggestions, or improvements you provide regarding the Software
41
+ may be freely used by Zuplo without any obligation to you.
42
+
43
+ ## 4. Open Source Software Notice
44
+
45
+ The Software may include or rely on components that are subject to separate open
46
+ source licenses. These components are not governed by this Agreement but instead
47
+ by their respective licenses.
48
+
49
+ Copies of the applicable open source licenses are provided in the distribution
50
+ of the Software.
51
+
52
+ ## 5. Termination
53
+
54
+ This license is effective until terminated. It will automatically terminate
55
+ without notice if you cease to be a customer of Zuplo or fail to comply with any
56
+ term of this Agreement. Upon termination, you must immediately cease all use of
57
+ the Software and destroy all copies.
58
+
59
+ ## 6. No Warranty
60
+
61
+ The Software is provided "**as is**," without warranty of any kind, express or
62
+ implied, including but not limited to the implied warranties of merchantability
63
+ or fitness for a particular purpose.
64
+
65
+ ## 7. Limitation of Liability
66
+
67
+ In no event shall Zuplo be liable for any indirect, incidental, special, or
68
+ consequential damages, or damages for loss of profits, revenue, data, or use,
69
+ incurred by you or any third party, whether in an action in contract or tort,
70
+ arising from your use of the Software.
71
+
72
+ ## 8. Governing Law
73
+
74
+ This Agreement is governed by and construed in accordance with the laws of the
75
+ State of Delaware, without regard to its conflict of law principles.
76
+
77
+ ## 9. Entire Agreement
78
+
79
+ This Agreement constitutes the entire agreement between the parties with respect
80
+ to the Software and supersedes all prior or contemporaneous understandings.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @zuplo/lint-win32-x64
2
+
3
+ The `win32-x64` binary for `zuplo-lint`, the linter behind `zuplo lint`.
4
+
5
+ This package is an implementation detail of [`@zuplo/cli`](https://www.npmjs.com/package/@zuplo/cli),
6
+ which installs it automatically as an optional dependency for your platform.
7
+ You should not need to depend on it directly.
Binary file
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@zuplo/lint-win32-x64",
3
+ "version": "7.4.0",
4
+ "description": "The win32-x64 binary for zuplo-lint, the Zuplo API linter.",
5
+ "repository": "https://github.com/zuplo/zuplo",
6
+ "author": "Zuplo, Inc.",
7
+ "license": "SEE LICENSE IN LICENSE.txt",
8
+ "os": [
9
+ "win32"
10
+ ],
11
+ "cpu": [
12
+ "x64"
13
+ ],
14
+ "publishConfig": {
15
+ "@zuplo:registry": "https://registry.npmjs.org",
16
+ "registry": "https://registry.npmjs.org",
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "bin/",
21
+ "LICENSE.txt"
22
+ ]
23
+ }