Skip to content

Commit 6098ccb

Browse files
committed
1.update package.json to acommodate all 3 folders (cat, wc &ls)
2. get rid of package-lock.json since a new one can be generated
1 parent 0e4e1c2 commit 6098ccb

2 files changed

Lines changed: 8 additions & 29 deletions

File tree

implement-shell-tools/package-lock.json

Lines changed: 0 additions & 25 deletions
This file was deleted.

implement-shell-tools/package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2-
"name": "cat",
2+
"name": "shell-command-tools-implementation",
33
"version": "1.0.0",
4-
"description": "You should already be familiar with the `cat` command line tool.",
5-
"main": "cat.js",
4+
"description": "JavaScript implementations of common shell command-line tools including cat, ls, and wc.",
5+
"bin": {
6+
"cat": "./cat/index.js",
7+
"ls": "./ls/index.js",
8+
"wc": "./wc/index.js"
9+
},
610
"scripts": {
711
"test": "echo \"Error: no test specified\" && exit 1"
812
},
913
"keywords": [],
10-
"author": "",
14+
"author": "Hassan O.",
1115
"license": "ISC",
1216
"type": "module",
1317
"dependencies": {

0 commit comments

Comments
 (0)