conductral 0.0.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/README.md +6 -0
  2. package/index.js +1 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # conductral
2
+
3
+ Placeholder package reserving the name for **Conductral**, a workload automation platform
4
+ (https://conductral.de). The real distribution will be published here.
5
+
6
+ License: proprietary. Contact: info@conductral.de
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = { name: "conductral", homepage: "https://conductral.de" };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "conductral",
3
+ "version": "0.0.1",
4
+ "description": "Conductral - Workload Automation. Name reservation; the real package will follow.",
5
+ "main": "index.js",
6
+ "license": "SEE LICENSE IN README.md",
7
+ "author": "KNAPP Consulting <info@conductral.de>",
8
+ "homepage": "https://conductral.de",
9
+ "files": ["index.js", "README.md"]
10
+ }