Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/herrmannplatz/unpinned
📌 Checks your package.json for unpinned dependencies
https://github.com/herrmannplatz/unpinned
Last synced: about 2 months ago
JSON representation
📌 Checks your package.json for unpinned dependencies
- Host: GitHub
- URL: https://github.com/herrmannplatz/unpinned
- Owner: herrmannplatz
- License: mit
- Created: 2017-11-20T19:35:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T03:56:11.000Z (about 2 years ago)
- Last Synced: 2024-04-14T06:17:19.544Z (9 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/unpinned
- Size: 1.64 MB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# unpinned
[![Greenkeeper badge](https://badges.greenkeeper.io/herrmannplatz/unpinned.svg)](https://greenkeeper.io/) [![npm version](https://badge.fury.io/js/unpinned.svg)](https://badge.fury.io/js/unpinned) [![Build Status](https://travis-ci.org/herrmannplatz/unpinned.svg?branch=master)](https://travis-ci.org/herrmannplatz/unpinned)
> Checks your package.json for unpinned dependencies
## Install
```
$ npm i unpinned // or globally using -g
```## Usage
Use it inside your node modules:
```javascript
const unpinned = require('unpinned')unpinned('path/to/package.json')
```Use it via cli:
```bash
$ unpinned # will check for package.json in the current directory$ unpinned ./path/to/package.json
$ unpinned ./path/to/package/json
```## API
### `unpinned(path)`
* **path**: Path to look for package.json.