GT2/GT2-Android/node_modules/natural-compare/package.json

111 lines
6.3 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"_args": [
[
{
"raw": "natural-compare@^1.4.0",
"scope": null,
"escapedName": "natural-compare",
"name": "natural-compare",
"rawSpec": "^1.4.0",
"spec": ">=1.4.0 <2.0.0",
"type": "range"
},
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/jest-snapshot"
]
],
"_from": "natural-compare@>=1.4.0 <2.0.0",
"_id": "natural-compare@1.4.0",
"_inCache": true,
"_location": "/natural-compare",
"_nodeVersion": "6.2.2",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/natural-compare-1.4.0.tgz_1469220490086_0.1379237591754645"
},
"_npmUser": {
"name": "megawac",
"email": "megawac@gmail.com"
},
"_npmVersion": "3.9.5",
"_phantomChildren": {},
"_requested": {
"raw": "natural-compare@^1.4.0",
"scope": null,
"escapedName": "natural-compare",
"name": "natural-compare",
"rawSpec": "^1.4.0",
"spec": ">=1.4.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/jest-snapshot"
],
"_resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"_shasum": "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7",
"_shrinkwrap": null,
"_spec": "natural-compare@^1.4.0",
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/jest-snapshot",
"author": {
"name": "Lauri Rooden",
"url": "https://github.com/litejs/natural-compare-lite"
},
"bugs": {
"url": "https://github.com/litejs/natural-compare-lite/issues"
},
"buildman": {
"dist/index-min.js": {
"banner": "/*! litejs.com/MIT-LICENSE.txt */",
"input": "index.js"
}
},
"dependencies": {},
"description": "Compare strings containing a mix of letters and numbers in the way a human being would in sort order.",
"devDependencies": {
"buildman": "*",
"testman": "*"
},
"directories": {},
"dist": {
"shasum": "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7",
"tarball": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
},
"files": [
"index.js"
],
"gitHead": "eec83eee67cfac84d6db30cdd65363f155673770",
"homepage": "https://github.com/litejs/natural-compare-lite#readme",
"keywords": [
"string",
"natural",
"order",
"sort",
"natsort",
"natcmp",
"compare",
"alphanum",
"litejs"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "megawac",
"email": "megawac@gmail.com"
}
],
"name": "natural-compare",
"optionalDependencies": {},
"readme": "\n[Build]: http://img.shields.io/travis/litejs/natural-compare-lite.png\n[Coverage]: http://img.shields.io/coveralls/litejs/natural-compare-lite.png\n[1]: https://travis-ci.org/litejs/natural-compare-lite\n[2]: https://coveralls.io/r/litejs/natural-compare-lite\n[npm package]: https://npmjs.org/package/natural-compare-lite\n[GitHub repo]: https://github.com/litejs/natural-compare-lite\n\n\n\n @version 1.4.0\n @date 2015-10-26\n @stability 3 - Stable\n\n\nNatural Compare &ndash; [![Build][]][1] [![Coverage][]][2]\n===============\n\nCompare strings containing a mix of letters and numbers\nin the way a human being would in sort order.\nThis is described as a \"natural ordering\".\n\n```text\nStandard sorting: Natural order sorting:\n img1.png img1.png\n img10.png img2.png\n img12.png img10.png\n img2.png img12.png\n```\n\nString.naturalCompare returns a number indicating\nwhether a reference string comes before or after or is the same\nas the given string in sort order.\nUse it with builtin sort() function.\n\n\n\n### Installation\n\n- In browser\n\n```html\n<script src=min.natural-compare.js></script>\n```\n\n- In node.js: `npm install natural-compare-lite`\n\n```javascript\nrequire(\"natural-compare-lite\")\n```\n\n### Usage\n\n```javascript\n// Simple case sensitive example\nvar a = [\"z1.doc\", \"z10.doc\", \"z17.doc\", \"z2.doc\", \"z23.doc\", \"z3.doc\"];\na.sort(String.naturalCompare);\n// [\"z1.doc\", \"z2.doc\", \"z3.doc\", \"z10.doc\", \"z17.doc\", \"z23.doc\"]\n\n// Use wrapper function for case insensitivity\na.sort(function(a, b){\n return String.naturalCompare(a.toLowerCase(), b.toLowerCase());\n})\n\n// In most cases we want to sort an array of objects\nvar a = [ {\"street\":\"350 5th Ave\", \"room\":\"A-1021\"}\n , {\"street\":\"350 5th Ave\", \"room\":\"A-21046-b\"} ];\n\n// sort by street, then by room\na.sort(function(a, b){\n return String.naturalCompare(a.street, b.street) || String.naturalCompare(a.room, b.room);\n})\n\n// When text transformation is needed (eg toLowerCase()),\n// it is best for performance to keep\n// transformed key in that object.\n// There are no need to do text transformation\n// on each comparision when sorting.\nvar a = [ {\"make\":\"Audi\", \"model\":\"A6\"}\n , {\"make\":\"Kia\", \"model\":\"Rio\"} ];\n\n// sort by make, then by model\na.map(function(car){\n car.sort_key = (car.make + \" \" + car.model).toLowerCase();\n})\na.sort(function(a, b){\n return String.naturalCompare(a.sort_key, b.sort_key);\n})\n```\n\n- Works well with dates in ISO format eg \"Rev 2012-07-26.doc\".\n\n\n### Custom alphabet\n\nIt is possible to configure a custom alphabet\nto achieve a desired order.\n\n```javascript\n// Estonian alphabet\nString.alphabet = \"ABDEFGHIJKLMNOPRSŠZŽTUVÕÄÖÜXYabdefghijklmnoprsšzžtuvõäöüxy\"\n[\"t\", \"z\", \"x\", \"õ\"].sort(String.naturalCompare)\n// [\"z\", \"t\", \"õ\", \"x\"]\n\n// Russian alphabet\nString.alphabet = \"АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя\"\n[\"Ё\", \"А\", \"Б\"].sort(String.naturalCompare)\n// [\"А\", \"Б\", \"Ё\"]\n```\n\n\nExternal links\n--------------\n\n- [GitHub repo][https://github.com/litejs/natural-compare-lite]\n- [jsperf test](http://jsperf.com/natural-sort-2/12)\n\n\nLicence\n-------\n\nCopyright (c) 2012-2015 Lauri Rooden &lt;lauri@rooden.ee&gt; \n[The MIT License](http://lauri.rooden.ee/mit-license.txt)\n\n\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/litejs/natural-compare-lite.git"
},
"scripts": {
"build": "node node_modules/buildman/index.js --all",
"test": "node tests/index.js"
},
"stability": 3,
"version": "1.4.0"
}