christian 4571a14169 android fix | hace 3 años | |
---|---|---|
.. | ||
CHANGELOG.md | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
index.js | hace 3 años | |
package.json | hace 3 años |
stringify-package
is a standalone
library for writing out package data as a JSON file. It is extracted from npm.
$ npm install stringify-package
const fs = require('fs')
const pkg = { /* ... */ }
fs.writeFile('package.json', stringifyPackage(pkg), 'utf8', cb(err) => {
// ...
})
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.
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.
> stringifyPackage(data, indent, newline) -> String
data
- the package data as an object to be stringifiedindent
- 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