jsfetch-term 1.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -2,4 +2,8 @@
2
2
  jsfetch is a clone of [neofetch](https://github.com/dylanaraps/neofetch) written in JavaScript using NodeJS.
3
3
  jsfetch is designed to be a fan project by [@toddmcintire](https://github.com/toddmcintire) to learn more about how JavaScript and NodeJS work. It is not designed to be run in any serious capacity, if you are looking for something more stable please use [neofetch](https://github.com/dylanaraps/neofetch).
4
4
 
5
- To
5
+ # Installation
6
+ To install globally on your machine through npm use the command
7
+ ```
8
+ npm i -g jsfetch-term
9
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsfetch-term",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "neofetch clone in javascript",
5
5
  "main": "app.js",
6
6
  "type": "module",
@@ -16,5 +16,9 @@
16
16
  "license": "GPL-3.0",
17
17
  "dependencies": {
18
18
  "chalk": "^5.0.1"
19
+ },
20
+ "devDependencies": {
21
+ "eslint": "^8.28.0",
22
+ "prettier": "^2.7.1"
19
23
  }
20
24
  }