package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "lcid@^1.0.0",
  6. "scope": null,
  7. "escapedName": "lcid",
  8. "name": "lcid",
  9. "rawSpec": "^1.0.0",
  10. "spec": ">=1.0.0 <2.0.0",
  11. "type": "range"
  12. },
  13. "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/os-locale"
  14. ]
  15. ],
  16. "_from": "lcid@>=1.0.0 <2.0.0",
  17. "_id": "lcid@1.0.0",
  18. "_inCache": true,
  19. "_location": "/lcid",
  20. "_nodeVersion": "0.12.0",
  21. "_npmUser": {
  22. "name": "sindresorhus",
  23. "email": "sindresorhus@gmail.com"
  24. },
  25. "_npmVersion": "2.5.1",
  26. "_phantomChildren": {},
  27. "_requested": {
  28. "raw": "lcid@^1.0.0",
  29. "scope": null,
  30. "escapedName": "lcid",
  31. "name": "lcid",
  32. "rawSpec": "^1.0.0",
  33. "spec": ">=1.0.0 <2.0.0",
  34. "type": "range"
  35. },
  36. "_requiredBy": [
  37. "/os-locale"
  38. ],
  39. "_resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
  40. "_shasum": "308accafa0bc483a3867b4b6f2b9506251d1b835",
  41. "_shrinkwrap": null,
  42. "_spec": "lcid@^1.0.0",
  43. "_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/os-locale",
  44. "author": {
  45. "name": "Sindre Sorhus",
  46. "email": "sindresorhus@gmail.com",
  47. "url": "sindresorhus.com"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/sindresorhus/lcid/issues"
  51. },
  52. "dependencies": {
  53. "invert-kv": "^1.0.0"
  54. },
  55. "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)",
  56. "devDependencies": {
  57. "ava": "0.0.4"
  58. },
  59. "directories": {},
  60. "dist": {
  61. "shasum": "308accafa0bc483a3867b4b6f2b9506251d1b835",
  62. "tarball": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"
  63. },
  64. "engines": {
  65. "node": ">=0.10.0"
  66. },
  67. "files": [
  68. "index.js",
  69. "lcid.json"
  70. ],
  71. "gitHead": "96bb3e617f77f5f8ceb78653c77de5a85abb3b1e",
  72. "homepage": "https://github.com/sindresorhus/lcid#readme",
  73. "keywords": [
  74. "lcid",
  75. "locale",
  76. "string",
  77. "str",
  78. "id",
  79. "identifier",
  80. "windows",
  81. "language",
  82. "lang",
  83. "map",
  84. "mapping",
  85. "convert",
  86. "json",
  87. "bcp47",
  88. "ietf",
  89. "tag"
  90. ],
  91. "license": "MIT",
  92. "maintainers": [
  93. {
  94. "name": "sindresorhus",
  95. "email": "sindresorhus@gmail.com"
  96. }
  97. ],
  98. "name": "lcid",
  99. "optionalDependencies": {},
  100. "readme": "# lcid [![Build Status](https://travis-ci.org/sindresorhus/lcid.svg?branch=master)](https://travis-ci.org/sindresorhus/lcid)\n\n> Mapping between [standard locale identifiers](http://en.wikipedia.org/wiki/Locale) and [Windows locale identifiers (LCID)](http://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms)\n\nBased on the [mapping](https://github.com/python/cpython/blob/be2a1a76fa43bb1ea1b3577bb5bdd506a2e90e37/Lib/locale.py#L1395-L1604) used in the Python standard library.\n\nThe mapping itself is just a [JSON file](lcid.json) and can be used wherever.\n\n\n## Install\n\n```\n$ npm install --save lcid\n```\n\n\n## Usage\n\n```js\nvar lcid = require('lcid');\n\nlcid.from(1044);\n//=> 'nb_NO'\n\nlcid.to('nb_NO');\n//=> 1044\n\nlcid.all;\n//=> {'af_ZA': 1078, ...}\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
  101. "readmeFilename": "readme.md",
  102. "repository": {
  103. "type": "git",
  104. "url": "git+https://github.com/sindresorhus/lcid.git"
  105. },
  106. "scripts": {
  107. "test": "node test.js"
  108. },
  109. "version": "1.0.0"
  110. }