Socket
Socket
Sign inDemoInstall

@marceloxp/getpackageinfo

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @marceloxp/getpackageinfo

Get basic info from package.json


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
36.4 kB
Created
Weekly downloads
 

Readme

Source

getpackageinfo

Get basic info from package.json

npm version License: LGPL v3

Installation

yarn add getpackageinfo --dev

Usage

nodejs

const getpackageinfo = require('getpackageinfo');
const data = getpackageinfo.data();
console.log(data);

gulp

const getpackageinfo = require('getpackageinfo');

gulp.task
(
    'test',
    () =>
    {
        const data    = getpackageinfo.data();    // Package name, version, next (version)
        const name    = getpackageinfo.name();    // Package name
        const version = getpackageinfo.version(); // Package version
        const next    = getpackageinfo.next();    // Package next (version)
    }
);

FAQs

Last updated on 19 Jul 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc