npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-banana-checker

v0.11.1

Published

Checker for the 'Banana' JSON-file format for interface messages, as used by MediaWiki and jQuery.i18n.

Downloads

66,426

Readme

banana-checker

Checker for the 'Banana' JSON-file format for interface messages, as used by MediaWiki and jQuery.i18n.

By default, Banana checker asserts the following:

  • The source and documentation files must exist and contain valid JSON.
  • Both files include a @metadata object.
  • Each defined source message is documented.
  • Each defined documentation entry has a matching source message.

For all available options, see the Options section.

You can use Banana checker standalone or as a Grunt plugin.

Getting started (Grunt plugin)

To use this plugin, add it as a development dependency to your project:

Ensure your project has a Gruntfile.js file (example file). Then, in Gruntfile.js, add the line:

Configure the Grunt plugin

In Gruntfile.js, add a configuration key for banana and set it to an empty object.

We will use this object to declare which directory contains the interface messages. For example, to enable grunt-banana-checker for a single directory only, configure it like so:

You can also configure multiple directories, like so:

You can also use globbing patterns and/or arrays of directories, like so:

For a full list of supported ways of defining the target directory of a Grunt plugin, see Configuring tasks on gruntjs.com.

To customise the options for Banana checker, define your target directory as an object instead of a string, with src and options properties, like so:

For all available options, see the Options section.

Command-line

The Banana checker also offers a command-line interface.

To use Banana checker as part of your test run, refer to the banana-checker program from the scripts.test property in your package.json file.

To set custom options, pass parameters as --key=value pairs. For example:

  • For boolean options, use the valus 0, 1, true, or false.
  • Quotes are allowed, but not required.
  • For options that allow multiple values, separate values by comma. Like --key=one,two.

Options

For edge cases, you can set some path options:

sourceFile

Type: string Default value: "en.json"

The JSON file providing the primary messages.

documentationFile

Type: string Default value: "qqq.json"

The JSON file providing the documentation messages.

requireMetadata

Type: boolean Default value: true

Whether to fail if message files don't have a @metadata meta-data key.

requireCompleteMessageDocumentation

Type: boolean Default value: true

Whether to fail if any message is in the primary file but not documented.

disallowEmptyDocumentation

Type: boolean Default value: true

Whether to fail if any message is in the primary file but documented as a blank string.

requireLowerCase

Type: boolean or "initial" Default value: true

Whether to fail if any message key is not lower case. If set to "initial", fail only if the first character is not lower case.

requireKeyPrefix

Type: string or string[] Default value: []

Whether to fail if any message key is not prefixed by the given prefix, or if multiple, one of the given prefixes.

disallowUnusedDocumentation

Type: boolean Default value: true

Whether to fail if any documented message isn't in the primary file.

disallowBlankTranslations

Type: boolean Default value: true

Whether to fail if any message is translated as a blank string.

disallowDuplicateTranslations

Type: boolean Default value: false

Whether to fail if any message is translated as identical to the original string.

disallowUnusedTranslations

Type: boolean Default value: false

Whether to fail if any translated message isn't in the primary file.

requireCompletelyUsedParameters

Type: boolean Default value: false

Whether to fail if any translated message fails to use a parameter used in the primary message.

requireCompleteTranslationLanguages

Type: string[] Default value: [] Example value: [ 'fr', 'es' ]

Languages on which to fail if any message in the primary file is missing.

requireCompleteTranslationMessages

Type: string[] Default value: [] Example value: [ 'first-message-key', 'third-message-key' ]

Messages on which to fail if missing in any provided language.

ignoreMissingBlankTranslations

Type: boolean Default value: true

Whether to ignore missing translations whose original string is blank.

allowLeadingWhitespace

Type: boolean Default value: true

Whether to ignore leading whitespace in original or translated messages.

allowTrailingWhitespace

Type: boolean Default value: false

Whether to ignore trailing whitespace in original or translated messages.