# @marionebl/git-semver-tags

> Get all git semver tags of your repository in reverse chronological order

Latest version **1.1.7** (published 2016-06-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install @marionebl/git-semver-tags
pnpm add @marionebl/git-semver-tags
yarn add @marionebl/git-semver-tags
bun add @marionebl/git-semver-tags
```

Provides the command `git-semver-tags`.

## 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.1.7 |
| Published | 2016-06-04 |
| First published | 2016-06-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Author | Steve Mao |
| Maintainers | marionebl |
| Keywords | git-semver-tags, order, semver, tag, git-tag, git |

## Links

- npm: https://www.npmjs.com/package/@marionebl/git-semver-tags
- Repository: https://github.com/stevemao/git-semver-tags
- Issues: https://github.com/stevemao/git-semver-tags/issues
- npm.io page: https://npm.io/package/@marionebl/git-semver-tags

## Dependencies (6)

- [meow](https://npm.io/package/meow.md) ^3.3.0
- [async](https://npm.io/package/async.md) ^2.0.0-rc.5
- [semver](https://npm.io/package/semver.md) ^5.0.1
- [git-walk-refs](https://npm.io/package/git-walk-refs.md) 0.0.2
- [git-parse-human](https://npm.io/package/git-parse-human.md) 0.0.1
- [@marionebl/git-fs-repo](https://npm.io/package/@marionebl/git-fs-repo.md) ^0.1.1

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 1.1.7 (latest) — 2016-06-04
- 1.1.6 — 2016-06-04
- 1.1.5 — 2016-06-03
- 1.1.4 — 2016-06-03
- 1.1.3 — 2016-06-03

## README

#  [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][coveralls-image]][coveralls-url]

> Get all git semver tags of your repository in reverse chronological order

*Note:* since lightweight tags do not store date information, the date of a tag is the date of the commit that is tagged on. If two tags on one commit, the order is not guaranteed.


## Install

```sh
$ npm install --save git-semver-tags
```


## Usage

```js
var gitSemverTags = require('git-semver-tags');

gitSemverTags(function(err, tag) {
  console.log(tag);
  //=> [ 'v2.0.0', 'v1.0.0' ]
});
```

```sh
$ npm install --global git-semver-tags
$ git-semver-tags
v2.0.0
v1.0.0
```


## License

MIT © [Steve Mao](https://github.com/stevemao)


[npm-image]: https://badge.fury.io/js/git-semver-tags.svg
[npm-url]: https://npmjs.org/package/git-semver-tags
[travis-image]: https://travis-ci.org/stevemao/git-semver-tags.svg?branch=master
[travis-url]: https://travis-ci.org/stevemao/git-semver-tags
[daviddm-image]: https://david-dm.org/stevemao/git-semver-tags.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/stevemao/git-semver-tags
[coveralls-image]: https://coveralls.io/repos/stevemao/git-semver-tags/badge.svg
[coveralls-url]: https://coveralls.io/r/stevemao/git-semver-tags

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