Socket
Socket
Sign inDemoInstall

stringify-package

Package Overview
Dependencies
0
Maintainers
9
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stringify-package

stringifies npm-written json files


Version published
Weekly downloads
823K
decreased by-3.11%
Maintainers
9
Install size
5.44 kB
Created
Weekly downloads
 

Changelog

Source

1.0.1 (2019-09-30)

Bug Fixes

  • strict comparison (0c5675f), closes #2

<a name="1.0.0"></a>

Readme

Source

stringify-package npm version license Travis AppVeyor Coverage Status

stringify-package is a standalone library for writing out package data as a JSON file. It is extracted from npm.

Install

$ npm install stringify-package

Table of Contents

Example

const fs = require('fs')
const pkg = { /* ... */ }

fs.writeFile('package.json', stringifyPackage(pkg), 'utf8', cb(err) => {
    // ...
})

Features

  • Ensures consistent file indentation
    To match existing file indentation, detect-indent is recommended.

  • Ensures consistent newlines
    To match existing newline characters, detect-newline is recommended.

Contributing

The npm team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The Contributor Guide has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.

API

> stringifyPackage(data, indent, newline) -> String

Arguments
  • data - the package data as an object to be stringified
  • indent - the number of spaces to use for each level of indentation (defaults to 2)
  • newline - the character(s) to be used as a line terminator

Keywords

FAQs

Last updated on 30 Sep 2019

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