ports-cli 1.0.0 → 1.0.2
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/README.md +3 -3
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<a href="https://www.npmjs.com/package/ports-cli"><img src="https://img.shields.io/npm/v/ports-cli.svg" alt="npm version"></a>
|
|
9
9
|
<a href="https://www.npmjs.com/package/ports-cli"><img src="https://img.shields.io/npm/dm/ports-cli.svg" alt="monthly downloads"></a>
|
|
10
|
-
<a href="https://github.com/
|
|
10
|
+
<a href="https://github.com/patebry/ports-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="license"></a>
|
|
11
11
|
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg" alt="node version"></a>
|
|
12
12
|
<img src="https://img.shields.io/badge/platform-macOS%20%7C%20Linux-lightgrey.svg" alt="platform">
|
|
13
13
|
<img src="https://img.shields.io/badge/coverage-100%25-brightgreen.svg" alt="coverage">
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
## Demo
|
|
19
19
|
|
|
20
20
|
<p align="center">
|
|
21
|
-
<img src="https://raw.githubusercontent.com/
|
|
21
|
+
<img src="https://raw.githubusercontent.com/patebry/ports-cli/main/demo.gif" alt="ports-cli demo" width="800">
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
24
|
## Quick Start
|
|
@@ -86,7 +86,7 @@ ports --version, -v Show version
|
|
|
86
86
|
## Contributing
|
|
87
87
|
|
|
88
88
|
```sh
|
|
89
|
-
git clone https://github.com/
|
|
89
|
+
git clone https://github.com/patebry/ports-cli.git
|
|
90
90
|
cd ports-cli
|
|
91
91
|
npm install
|
|
92
92
|
```
|
package/package.json
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ports-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Interactive TUI for viewing and killing listening TCP ports",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/
|
|
8
|
+
"url": "https://github.com/patebry/ports-cli.git"
|
|
9
9
|
},
|
|
10
|
-
"author": "
|
|
10
|
+
"author": "patebry",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/
|
|
13
|
+
"url": "https://github.com/patebry/ports-cli/issues"
|
|
14
14
|
},
|
|
15
|
-
"homepage": "https://github.com/
|
|
16
|
-
"os": [
|
|
15
|
+
"homepage": "https://github.com/patebry/ports-cli#readme",
|
|
16
|
+
"os": [
|
|
17
|
+
"darwin",
|
|
18
|
+
"linux"
|
|
19
|
+
],
|
|
17
20
|
"bin": {
|
|
18
21
|
"ports": "./dist/ports.js",
|
|
19
22
|
"ports-cli": "./dist/ports.js"
|