111 lines
4.9 KiB
JSON
111 lines
4.9 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "y18n@^3.2.1",
|
|
"scope": null,
|
|
"escapedName": "y18n",
|
|
"name": "y18n",
|
|
"rawSpec": "^3.2.1",
|
|
"spec": ">=3.2.1 <4.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/yargs"
|
|
]
|
|
],
|
|
"_from": "y18n@>=3.2.1 <4.0.0",
|
|
"_id": "y18n@3.2.1",
|
|
"_inCache": true,
|
|
"_location": "/y18n",
|
|
"_nodeVersion": "3.2.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-13-west.internal.npmjs.com",
|
|
"tmp": "tmp/y18n-3.2.1.tgz_1458191070611_0.9606689948122948"
|
|
},
|
|
"_npmUser": {
|
|
"name": "bcoe",
|
|
"email": "ben@npmjs.com"
|
|
},
|
|
"_npmVersion": "3.3.0",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "y18n@^3.2.1",
|
|
"scope": null,
|
|
"escapedName": "y18n",
|
|
"name": "y18n",
|
|
"rawSpec": "^3.2.1",
|
|
"spec": ">=3.2.1 <4.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/jest-runtime/yargs",
|
|
"/jest/yargs",
|
|
"/metro/yargs",
|
|
"/react-native/yargs",
|
|
"/yargs"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
|
|
"_shasum": "6d15fba884c08679c0d77e88e7759e811e07fa41",
|
|
"_shrinkwrap": null,
|
|
"_spec": "y18n@^3.2.1",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/yargs",
|
|
"author": {
|
|
"name": "Ben Coe",
|
|
"email": "ben@npmjs.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yargs/y18n/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "the bare-bones internationalization library used by yargs",
|
|
"devDependencies": {
|
|
"chai": "^3.4.1",
|
|
"coveralls": "^2.11.6",
|
|
"mocha": "^2.3.4",
|
|
"nyc": "^6.1.1",
|
|
"rimraf": "^2.5.0",
|
|
"standard": "^5.4.1"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "6d15fba884c08679c0d77e88e7759e811e07fa41",
|
|
"tarball": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "34d6ad7bfeac67721ccbcf3bbcc761f33d787c90",
|
|
"homepage": "https://github.com/yargs/y18n",
|
|
"keywords": [
|
|
"i18n",
|
|
"internationalization",
|
|
"yargs"
|
|
],
|
|
"license": "ISC",
|
|
"main": "index.js",
|
|
"maintainers": [
|
|
{
|
|
"name": "bcoe",
|
|
"email": "ben@npmjs.com"
|
|
},
|
|
{
|
|
"name": "nexdrew",
|
|
"email": "andrew@npmjs.com"
|
|
}
|
|
],
|
|
"name": "y18n",
|
|
"optionalDependencies": {},
|
|
"readme": "# y18n\n\n[![Build Status][travis-image]][travis-url]\n[![Coverage Status][coveralls-image]][coveralls-url]\n[![NPM version][npm-image]][npm-url]\n[![js-standard-style][standard-image]][standard-url]\n\nThe bare-bones internationalization library used by yargs.\n\nInspired by [i18n](https://www.npmjs.com/package/i18n).\n\n## Examples\n\n_simple string translation:_\n\n```js\nvar __ = require('y18n').__\n\nconsole.log(__('my awesome string %s', 'foo'))\n```\n\noutput:\n\n`my awesome string foo`\n\n_pluralization support:_\n\n```js\nvar __n = require('y18n').__n\n\nconsole.log(__n('one fish %s', '%d fishes %s', 2, 'foo'))\n```\n\noutput:\n\n`2 fishes foo`\n\n## JSON Language Files\n\nThe JSON language files should be stored in a `./locales` folder.\nFile names correspond to locales, e.g., `en.json`, `pirate.json`.\n\nWhen strings are observed for the first time they will be\nadded to the JSON file corresponding to the current locale.\n\n## Methods\n\n### require('y18n')(config)\n\nCreate an instance of y18n with the config provided, options include:\n\n* `directory`: the locale directory, default `./locales`.\n* `updateFiles`: should newly observed strings be updated in file, default `true`.\n* `locale`: what locale should be used.\n* `fallbackToLanguage`: should fallback to a language-only file (e.g. `en.json`)\n be allowed if a file matching the locale does not exist (e.g. `en_US.json`),\n default `true`.\n\n### y18n.\\_\\_(str, arg, arg, arg)\n\nPrint a localized string, `%s` will be replaced with `arg`s.\n\n### y18n.\\_\\_n(singularString, pluralString, count, arg, arg, arg)\n\nPrint a localized string with appropriate pluralization. If `%d` is provided\nin the string, the `count` will replace this placeholder.\n\n### y18n.setLocale(str)\n\nSet the current locale being used.\n\n### y18n.getLocale()\n\nWhat locale is currently being used?\n\n### y18n.updateLocale(obj)\n\nUpdate the current locale with the key value pairs in `obj`.\n\n## License\n\nISC\n\n[travis-url]: https://travis-ci.org/yargs/y18n\n[travis-image]: https://img.shields.io/travis/yargs/y18n.svg\n[coveralls-url]: https://coveralls.io/github/yargs/y18n\n[coveralls-image]: https://img.shields.io/coveralls/yargs/y18n.svg\n[npm-url]: https://npmjs.org/package/y18n\n[npm-image]: https://img.shields.io/npm/v/y18n.svg\n[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg\n[standard-url]: https://github.com/feross/standard\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/yargs/y18n.git"
|
|
},
|
|
"scripts": {
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls",
|
|
"pretest": "standard",
|
|
"test": "nyc mocha"
|
|
},
|
|
"version": "3.2.1"
|
|
}
|