-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 KB
/
package.json
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
48
49
50
51
52
53
54
{
"name": "hacker-feeds-cli",
"version": "0.4.3",
"description": "A command line tool for hacker news & product hunt feeds.",
"main": "index.js",
"bin": {
"hfeeds": "bin/main.js",
"hf": "bin/main.js"
},
"scripts": {
"format": "prettier --write '**/*.{json,js,md,yml}'",
"pretty-quick": "pretty-quick",
"prepublishOnly": "np --no-cleanup --no-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Mayandev/hacker-feeds-cli"
},
"keywords": [
"hacker news",
"hacker",
"feeds",
"producthunt",
"cli"
],
"author": "phillzou <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mayandev/hacker-feeds-cli/issues"
},
"homepage": "https://github.com/Mayandev/hacker-feeds-cli#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.9",
"commander": "^6.2.1",
"execa": "^5.0.0",
"inquirer": "^8.1.0",
"lodash": "^4.17.21",
"ora": "^5.4.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"husky": "^4.3.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"np": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}