pwnbotdetect 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 +9 -0
  2. package/index.js +10 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # pwnbotdetect
2
+
3
+ Reserved for PwnBot by Checkmate Labs. Not released yet.
4
+
5
+ This placeholder holds the name and contains no code: installing or running
6
+ it does nothing but print that it isn't released. The real package will be
7
+ published under this name when PwnBot is released.
8
+
9
+ All rights reserved until then.
package/index.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // A placeholder that reserves this package name. It contains no PwnBot code.
3
+ const message =
4
+ "This package name is reserved for PwnBot by Checkmate Labs and hasn't been released yet. " +
5
+ "It contains no code; nothing here protects anything.";
6
+ if (require.main === module) {
7
+ console.error(message);
8
+ process.exit(1);
9
+ }
10
+ throw new Error(message);
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "pwnbotdetect",
3
+ "version": "0.0.1",
4
+ "description": "Reserved for PwnBot by Checkmate Labs. Not released yet: this placeholder contains no code.",
5
+ "main": "index.js",
6
+ "bin": { "pwnbotdetect": "index.js" },
7
+ "files": ["index.js", "README.md"],
8
+ "license": "SEE LICENSE IN README.md",
9
+ "author": "Checkmate Labs"
10
+ }