@opscotch/resource-testkit 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. package/LICENSE.txt +15 -0
  2. package/README.md +9 -0
  3. package/package.json +4 -2
package/LICENSE.txt ADDED
@@ -0,0 +1,15 @@
1
+ Opscotch Resource Testkit License Notice
2
+
3
+ Copyright (c) Opscotch
4
+
5
+ This package is free to use, copy, and run, provided that your use complies with
6
+ the current Opscotch legal terms published at:
7
+
8
+ https://www.opscotch.co/legal
9
+
10
+ By installing, copying, or using this package, you agree to those terms.
11
+
12
+ If you do not agree to those terms, do not install, copy, or use this package.
13
+
14
+ The terms published at the URL above are the governing license and usage terms
15
+ for this package.
package/README.md CHANGED
@@ -49,3 +49,12 @@ await runResource({
49
49
  ## Publishing
50
50
 
51
51
  This package is intended to be published to npmjs as a public scoped package.
52
+
53
+ ## License
54
+
55
+ This package is free to use, but use is conditioned on agreement to the Opscotch
56
+ legal terms:
57
+
58
+ - https://www.opscotch.co/legal
59
+
60
+ The packaged license notice is included in [LICENSE.txt](/home/jeremy/dev/opscotch/apps/public-apps/opscotch-resource-testkit-npm/LICENSE.txt).
package/package.json CHANGED
@@ -1,19 +1,21 @@
1
1
  {
2
2
  "name": "@opscotch/resource-testkit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Unit test runtime shim for Opscotch JavaScript resources.",
5
5
  "type": "module",
6
- "license": "UNLICENSED",
6
+ "license": "SEE LICENSE IN LICENSE.txt",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/opscotch/opscotch.git"
10
10
  },
11
+ "homepage": "https://www.opscotch.co/legal",
11
12
  "publishConfig": {
12
13
  "registry": "https://registry.npmjs.org",
13
14
  "access": "public"
14
15
  },
15
16
  "files": [
16
17
  "dist",
18
+ "LICENSE.txt",
17
19
  "README.md"
18
20
  ],
19
21
  "main": "./dist/index.js",