forked from AlreadyBored/node-nodejs-fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.31 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "node-nodejs-fundamentals",
"version": "1.0.0",
"description": "Node.js Fundamentals assignment repository",
"engines": {
"node": ">=24.10.0",
"npm": ">=10.9.2"
},
"type": "module",
"scripts": {
"fs:snapshot": "node src/fs/snapshot.js",
"fs:restore": "node src/fs/restore.js",
"fs:findByExt": "node src/fs/findByExt.js --ext txt",
"fs:merge": "node src/fs/merge.js",
"cli:interactive": "node src/cli/interactive.js",
"cli:progress": "node src/cli/progress.js",
"modules:dynamic": "node src/modules/dynamic.js uppercase",
"hash:verify": "node src/hash/verify.js",
"streams:lineNumberer": "echo 'hello\nworld' | node src/streams/lineNumberer.js",
"streams:filter": "echo 'hello\nworld\ntest' | node src/streams/filter.js --pattern test",
"streams:split": "node src/streams/split.js --lines 10",
"zip:compressDir": "node src/zip/compressDir.js",
"zip:decompressDir": "node src/zip/decompressDir.js",
"wt:main": "node src/wt/main.js",
"cp:execCommand": "node src/cp/execCommand.js \"echo 'Hello World'\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlreadyBored/node-nodejs-fundamentals.git"
},
"keywords": [
"nodejs",
"fundamentals",
"assignments"
],
"author": "alreadybored",
"license": "ISC"
}