agenteye 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 (2) hide show
  1. package/package.json +11 -0
  2. package/preinstall.js +8 -0
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "agenteye",
3
+ "version": "0.0.1",
4
+ "description": "AgentEye is an enterprise product. Contact support@exosphere.host for access.",
5
+ "scripts": {
6
+ "preinstall": "node preinstall.js"
7
+ },
8
+ "files": [
9
+ "preinstall.js"
10
+ ]
11
+ }
package/preinstall.js ADDED
@@ -0,0 +1,8 @@
1
+ process.stderr.write(
2
+ "\n" +
3
+ "ERROR: 'agenteye' is not available on public npm.\n" +
4
+ "AgentEye is an enterprise product and is distributed privately.\n" +
5
+ "Please contact support@exosphere.host for access.\n" +
6
+ "\n"
7
+ );
8
+ process.exit(1);