@patrtorg/ducimus-possimus-labore
Organizes and maintains your JSON files readable.
Finepack is a tool to keep your JSON files organized, especially if you are creating an open source project and want to be sure that your files have all the information that is required or recommended by the main package management systems (like bower or npm). This is what it can do:
- Lints the JSON to be sure that it is in a valid format.
- Validates the keys to make sure of the existence of required keys such as
name
or version
, and other important keys such as homepage
, main
, license
... - Organizes the JSON by moving the most important properties to the top.
- Sorts the rest of the keys alphabetically and recursively using the JavaScript sort function (elements are sorted by converting them to strings and comparing strings in Unicode code point order).
- Can be configured not to sort the arrays or objects at one or more user specified keys.
- Can use a user-provided compare function to define the sort order.
You can use Finepack as a CLI tool or from NodeJS as a library. Based on fixpack but with a little more ♥.
Install
npm install @patrtorg/ducimus-possimus-labore -g
Usage
CLI
$ @patrtorg/ducimus-possimus-labore
Organizes and maintains your JSON files readable.
Usage
$ @patrtorg/ducimus-possimus-labore <fileJSON> [options]
options:
--no-validate disable validation mode.
--no-color disable colors in the output.
--sort-ignore-object-at don't sort object(s) at these comma separated key(s).
--sort-ignore-array-at don't sort array(s) at these comma separated key(s).
--version output the current version.
examples:
@patrtorg/ducimus-possimus-labore package.json
@patrtorg/ducimus-possimus-labore bower.json --no-validate
API
To use Finepack inside your NodeJS project, just install it as a normal dependency.
const fs = require('fs')
const path = require('path')
const @patrtorg/ducimus-possimus-labore = require('@patrtorg/ducimus-possimus-labore')
const filepath = path.resolve('./package.json')
const filename = path.basename(filepath)
const filedata = fs.readFileSync(filepath, { encoding: 'utf8' })
const options = {
filename: filename,
validate: false,
color: false,
sortOptions: {
}
}
@patrtorg/ducimus-possimus-labore(filedata, options, function (err, output, messages) {
if (err) throw err
})
License
MIT © Kiko Beats