cron-human 1.0.0 → 1.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/README.md +1 -1
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -253,7 +253,7 @@ Want to contribute or run locally?
253
253
 
254
254
  1. **Clone the repository:**
255
255
  ```bash
256
- git clone https://github.com/yourusername/cron-human.git
256
+ git clone https://github.com/AKforCodes/cron-human.git
257
257
  cd cron-human
258
258
  ```
259
259
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "cron-human",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A CLI that converts cron expressions to human-readable English and prints next run times",
5
5
  "main": "dist/lib.js",
6
6
  "types": "dist/lib.d.ts",
7
7
  "bin": {
8
- "cron-human": "./dist/cli.js"
8
+ "cron-human": "dist/cli.js"
9
9
  },
10
10
  "type": "module",
11
11
  "scripts": {
@@ -25,6 +25,14 @@
25
25
  ],
26
26
  "author": "Akin Ibitoye",
27
27
  "license": "MIT",
28
+ "homepage": "https://github.com/AKforCodes/cron-human#readme",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/AKforCodes/cron-human.git"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/AKforCodes/cron-human/issues"
35
+ },
28
36
  "files": [
29
37
  "dist",
30
38
  "README.md",