aboutsummaryrefslogtreecommitdiff
path: root/node_modules/latest-version/readme.md
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
committerMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
commitb22f6770c8bd084d66950655203c61dd701b3d90 (patch)
tree873d7fb19584ec2709b95cc1ca05a1fc7cfd0fc4 /node_modules/latest-version/readme.md
parent383285ecd5292bf9a825e05904955b937de84cc9 (diff)
downloadequestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.gz
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.bz2
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.zip
Remove node_modules
Diffstat (limited to 'node_modules/latest-version/readme.md')
-rw-r--r--node_modules/latest-version/readme.md42
1 files changed, 0 insertions, 42 deletions
diff --git a/node_modules/latest-version/readme.md b/node_modules/latest-version/readme.md
deleted file mode 100644
index ee57266..0000000
--- a/node_modules/latest-version/readme.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# latest-version [![Build Status](https://travis-ci.org/sindresorhus/latest-version.svg?branch=master)](https://travis-ci.org/sindresorhus/latest-version)
-
-> Get the latest version of an npm package
-
-Fetches the version directly from the registry instead of depending on the massive [npm](https://github.com/npm/npm/blob/8b5e7b6ae5b4cd2d7d62eaf93b1428638b387072/package.json#L37-L85) module like the [latest](https://github.com/bahamas10/node-latest) module does.
-
-
-## Install
-
-```
-$ npm install latest-version
-```
-
-
-## Usage
-
-```js
-const latestVersion = require('latest-version');
-
-(async () => {
- console.log(await latestVersion('ava'));
- //=> '0.18.0'
-
- console.log(await latestVersion('@sindresorhus/df'));
- //=> '1.0.1'
-
- // Also works with semver ranges and dist-tags
- console.log(await latestVersion('npm', {version: 'latest-5'}));
- //=> '5.5.1'
-})();
-```
-
-
-## Related
-
-- [latest-version-cli](https://github.com/sindresorhus/latest-version-cli) - CLI for this module
-- [package-json](https://github.com/sindresorhus/package-json) - Get the package.json of a package from the npm registry
-
-
-## License
-
-MIT © [Sindre Sorhus](https://sindresorhus.com)