fomoapp
Version:
Get the latest tech news right into your CLI
63 lines (62 loc) • 1.46 kB
JSON
{
"name": "fomoapp",
"version": "4.0.0",
"description": "Get the latest tech news right into your CLI",
"main": "index.js",
"bin": {
"fomo": "index.js"
},
"scripts": {
"test": "jest tests",
"build": "pkg --compress Brotli . --out-path dist",
"zip": "cd dist && find . -name 'fomoapp-*' -exec zip '{}.zip' '{}' \\;",
"release": "release-it --github.release --github.assets=dist/*.zip",
"postuninstall": "node scripts/uninstall"
},
"release-it": {
"hooks": {
"after:bump": "rm -rf ./dist && npm run build && npm run zip"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/orgoldfus/fomo.git"
},
"keywords": [
"news",
"technology",
"tech",
"cli",
"terminal",
"term",
"console"
],
"author": "Or Goldfus",
"license": "MIT",
"bugs": {
"url": "https://github.com/orgoldfus/fomo/issues"
},
"homepage": "https://github.com/orgoldfus/fomo#readme",
"engines": {
"node": ">=12"
},
"dependencies": {
"axios": "^1.1.3",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^9.4.1",
"configstore": "^5.0.1",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.21",
"ora": "^5.4.1",
"prompts": "^2.4.2",
"rss-parser": "^3.12.0",
"terminal-link": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"pkg": "^5.8.0",
"release-it": "^14.11.6"
}
}