-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 929 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 929 Bytes
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
39
40
41
42
43
44
45
46
47
{
"name": "nodefeed-cli",
"description": "See what's happening on popular blogging platforms easily from your terminal.",
"version": "1.0.12",
"type": "module",
"license": "MIT",
"bin": {
"nodefeed": "index.js",
"nodefeed-cli": "index.js",
"nf": "index.js"
},
"author": {
"name": "Ammaar Aslam",
"email": "ammaaraslam7@gmail.com",
"url": "https://ammaaraslam.hashnode.dev"
},
"keywords": [
"Hashnode",
"API",
"NodeJS",
"CLI",
"Terminal"
],
"files": [
"index.js",
"lib"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"boxen": "^7.0.0",
"chalk": "^4.1.2",
"cli-meow-help": "^3.1.0",
"first-run": "^3.0.0",
"fs": "^0.0.1-security",
"inquirer": "^9.1.0",
"meow": "^9.0.0",
"node-fetch": "^3.2.10",
"node-url-shortener": "^2.0.3",
"ora": "^6.1.2",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}