mirror of
https://github.com/antonmedv/fx
synced 2024-11-03 15:40:12 +00:00
f110142160
- Arrow navigation - Interactive digger - Themes support
49 lines
918 B
JSON
49 lines
918 B
JSON
{
|
|
"name": "fx",
|
|
"version": "3.1.0",
|
|
"description": "Command-line JSON viewer",
|
|
"repository": "antonmedv/fx",
|
|
"author": "Anton Medvedev <anton@medv.io>",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"fx": "index.js"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"fx.js"
|
|
],
|
|
"scripts": {
|
|
"test": "ava",
|
|
"release": "pkg . --out-path dist && release-it --github.release --github.assets=dist/*"
|
|
},
|
|
"pkg": {
|
|
"scripts": "node_modules/neo-blessed/lib/**/*.js"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"viewer",
|
|
"cli",
|
|
"terminal",
|
|
"term",
|
|
"console",
|
|
"ascii",
|
|
"unicode",
|
|
"blessed"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"dependencies": {
|
|
"@medv/blessed": "^1.0.0",
|
|
"chalk": "^2.4.1",
|
|
"editor-widget": "^1.1.1",
|
|
"indent-string": "^3.2.0",
|
|
"string-width": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.25.0",
|
|
"pkg": "^4.3.4",
|
|
"release-it": "^8.2.0"
|
|
}
|
|
}
|