# gammafreshness

> Check for outdated packages. This is a fork of freshness package.

Latest version **1.0.2** (published 2017-02-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install gammafreshness
pnpm add gammafreshness
yarn add gammafreshness
bun add gammafreshness
```

Provides the command `gammafreshness`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2017-02-10 |
| First published | 2017-02-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Daijiro Wachi |
| Maintainers | gammasoft |
| Keywords | outdated |

## Links

- npm: https://www.npmjs.com/package/gammafreshness
- npm.io page: https://npm.io/package/gammafreshness

## Dependencies (1)

- [commander](https://npm.io/package/commander.md) ^2.9.0

## Recent versions

- 1.0.2 (latest) — 2017-02-10
- 1.0.1 — 2017-02-10
- 1.0.0 — 2017-02-09

## README

# freshness
exit(1) if there is any outdated package

## npm outdated as a test
if there is any outdated package in your `package.json`, it should be an error to keep your dependencies up to date. This freshness command helps you to check them and notice you by falling a command if you are using an old package in your `package.json`. If you'd like to manage by automated pull-requests, you should try [greenkeeper](https://github.com/greenkeeperio/greenkeeper).

## getting started
install the package via `npm install`
> $ npm install --save-dev freshness

add a run-script to your package.json:
```json
{
 "test": "freshness"
}
```

you may specify packages to ignore by passing the `--ignore` parameter like so:
```bash
freshness --ignore=nodeunit,async
```

run it
> $ npm test

## Usage
See `--help`:
```
freshness --help

  Usage: freshness [options]

  Options:

    -h, --help               output usage information
    -V, --version            output the version number
    -i, --ignore <packages>  A comma separated list of packages to ignore
```

---
_Source: https://npm.io/package/gammafreshness · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
