{"id":18280246,"url":"https://github.com/nexdrew/cies","last_synced_at":"2025-04-05T06:30:20.226Z","repository":{"id":48483376,"uuid":"107200038","full_name":"nexdrew/cies","owner":"nexdrew","description":":ocean: List dependencies in your terminal","archived":false,"fork":false,"pushed_at":"2021-07-23T10:23:17.000Z","size":99,"stargazers_count":3,"open_issues_count":12,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T19:42:29.362Z","etag":null,"topics":["cli","console","dependencies","devdependencies","nodejs","npm","package-json","terminal","versions"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nexdrew.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-17T01:00:31.000Z","updated_at":"2024-06-13T19:01:54.000Z","dependencies_parsed_at":"2022-09-16T09:22:01.193Z","dependency_job_id":null,"html_url":"https://github.com/nexdrew/cies","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexdrew%2Fcies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexdrew%2Fcies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexdrew%2Fcies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexdrew%2Fcies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nexdrew","download_url":"https://codeload.github.com/nexdrew/cies/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299766,"owners_count":20916183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","console","dependencies","devdependencies","nodejs","npm","package-json","terminal","versions"],"created_at":"2024-11-05T12:33:59.350Z","updated_at":"2025-04-05T06:30:19.920Z","avatar_url":"https://github.com/nexdrew.png","language":"JavaScript","readme":"# ~~dependen~~cies\n\n\u003e List dependencies (in your terminal)\n\n[![Build Status](https://travis-ci.org/nexdrew/cies.svg?branch=master)](https://travis-ci.org/nexdrew/cies)\n[![Coverage Status](https://coveralls.io/repos/github/nexdrew/cies/badge.svg?branch=master)](https://coveralls.io/github/nexdrew/cies?branch=master)\n[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n[![Greenkeeper badge](https://badges.greenkeeper.io/nexdrew/cies.svg)](https://greenkeeper.io/)\n\nList dependencies from package.json and easily compare installed version against latest version published.\n\nBasically a smaller, simpler, faster [`npm-check`](https://github.com/dylang/npm-check).\n\n## Examples\n\n### List all dependencies and compare versions\n\n![cies -av](https://user-images.githubusercontent.com/1929625/37691440-799199ee-2c88-11e8-8a57-b9a8b4581a68.png)\n\nThe columns of output are:\n1. package name\n2. type of dependency\n3. semver range declared in package.json, if any\n4. version installed in local node_modules, if any\n5. latest published version, if any\n6. semver difference between installed and latest, if any\n\n### List all dependencies without version lookup\n\n![cies -a](https://user-images.githubusercontent.com/1929625/37691583-5bd58da6-2c89-11e8-93d3-4889148b83ea.png)\n\n### List only the names of all dependencies\n\n![cies -at](https://user-images.githubusercontent.com/1929625/37691611-74fe8472-2c89-11e8-84dd-e6b90ee9ff99.png)\n\nThis makes it easy to pipe dependencies to another program, like [`nfo`](https://github.com/nexdrew/nfo):\n\n```console\n$ cies -at | xargs nfo dist-tags\n\nchalk\n{ latest: '2.3.2' }\n\nlatest-version\n{ latest: '3.1.0' }\n\nora\n{ latest: '2.0.0' }\n\nsemver\n{ alpha: '2.0.0-alpha',\n  beta: '2.0.0-beta',\n  latest: '5.5.0',\n  'v4-rc': '4.0.0' }\n\nsywac\n{ latest: '1.2.0' }\n\ncoveralls\n{ latest: '3.0.0' }\n\nmockery\n{ latest: '2.1.0' }\n\nstandard\n{ latest: '11.0.1' }\n\nstandard-version\n{ latest: '4.3.0', next: '4.3.0-candidate.1' }\n\ntap\n{ latest: '11.1.3', next: '11.0.0-rc.3' }\n```\n\n## Install\n\n```console\n$ npm i -g cies\n```\n\n```console\n$ cies --help\nList dependencies from package.json\n\nUsage: cies [dir] [options]\n\nArguments:\n  [dir]  Optional path to directory containing package.json  [dir]\n\nOptions:\n  -d, --dev        Include devDependencies               [boolean]\n  -p, --peer       Include peerDependencies              [boolean]\n  -b, --bundled    Include bundledDependencies           [boolean]\n  -o, --optional   Include optionalDependencies          [boolean]\n  -a, --all        Include dependencies from all types   [boolean]\n  -x, --exclusive  Exclude production dependencies       [boolean]\n  -s, --sort       Sort list before printing             [boolean]\n  -v, --versions   Lookup installed and latest versions  [boolean]\n  -m, --major      Only deps behind by major version     [boolean]\n  -n, --minor      Only deps behind by minor version     [boolean]\n  -f, --patch      Only deps behind by patch version     [boolean]\n  -c, --command    Print commands to update to latest    [boolean]\n  -t, --terse      Print names/commands only, no color   [boolean]\n  -h, --help       Print this help content               [boolean]\n  -V, --version    Print cies program version            [boolean]\n```\n\n## License\n\nISC © Contributors\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexdrew%2Fcies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnexdrew%2Fcies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexdrew%2Fcies/lists"}