get-current-package
Get the package.json of the currently executing bin.
Last updated 2 years ago by fabiospampinato .
Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install get-current-package 
SYNC missed versions from official npm registry.

Get Current Package

Get the package.json of the currently executing bin.

This is meant to be used in combination with tiny-updater or similar, in order to get the name and the version of the currently executing bin very conveniently, without importing a "package.json" and without hard-coding the values yourself.

Install

npm install --save get-current-package

Usage

You should have something like this in your bin app:

import getCurrentPackage from 'get-current-package';

console.log ( getCurrentPackage () );

Then executing the bin would produce this:

> my-bin
< { name: 'my-bin', version: '1.0.0', ... }

Basically it detects which entrypoint file is being executed and retrieves its package.json.

License

MIT © Fabio Spampinato

Current Tags

  • 1.0.0                                ...           latest (2 years ago)

1 Versions

  • 1.0.0                                ...           2 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (4)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |