pentest-tool-lite 3.10.8 → 3.10.10
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/dist/command.d.ts +2 -0
- package/dist/index.d.ts +5 -2
- package/dist/index.js +11 -0
- package/package.json +2 -2
- /package/{dist/README.md → README.md} +0 -0
- /package/dist/{index → command.js} +0 -0
package/dist/index.d.ts
CHANGED
package/dist/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Test = exports.Pentest = void 0;
|
|
7
|
+
const Pentest_1 = __importDefault(require("./Pentest"));
|
|
8
|
+
exports.Pentest = Pentest_1.default;
|
|
9
|
+
const Test_1 = __importDefault(require("./Test"));
|
|
10
|
+
exports.Test = Test_1.default;
|
|
11
|
+
exports.default = Pentest_1.default;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pentest-tool-lite",
|
|
3
3
|
"description": "Check your website ( or any other website ) for common vulnerabilities.",
|
|
4
|
-
"version": "3.10.
|
|
4
|
+
"version": "3.10.10",
|
|
5
5
|
"homepage": "https://pentest-tool-lite.com",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"email": "juffalow@juffalow.com",
|
|
10
10
|
"url": "https://juffalow.com"
|
|
11
11
|
},
|
|
12
|
-
"bin": "./dist/
|
|
12
|
+
"bin": "./dist/command.js",
|
|
13
13
|
"files": [
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
File without changes
|
|
File without changes
|