package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "_from": "string-natural-compare@^3.0.1",
  3. "_id": "string-natural-compare@3.0.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==",
  6. "_location": "/string-natural-compare",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "string-natural-compare@^3.0.1",
  12. "name": "string-natural-compare",
  13. "escapedName": "string-natural-compare",
  14. "rawSpec": "^3.0.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^3.0.1"
  17. },
  18. "_requiredBy": [
  19. "/eslint-plugin-flowtype"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz",
  22. "_shasum": "7a42d58474454963759e8e8b7ae63d71c1e7fdf4",
  23. "_spec": "string-natural-compare@^3.0.1",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\eslint-plugin-flowtype",
  25. "author": {
  26. "name": "Nathan Woltman",
  27. "email": "nwoltman@outlook.com"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/nwoltman/string-natural-compare/issues"
  31. },
  32. "bundleDependencies": false,
  33. "deprecated": false,
  34. "description": "Compare alphanumeric strings the same way a human would, using a natural order algorithm",
  35. "devDependencies": {
  36. "@nwoltman/eslint-config": "^0.6.0",
  37. "coveralls": "^3.0.9",
  38. "eslint": "^6.8.0",
  39. "mocha": "^7.0.0",
  40. "nyc": "^15.0.0",
  41. "should": "^13.2.3"
  42. },
  43. "eslintIgnore": [
  44. "benchmark/node_modules/",
  45. "coverage/"
  46. ],
  47. "files": [
  48. "natural-compare.js"
  49. ],
  50. "homepage": "https://github.com/nwoltman/string-natural-compare",
  51. "keywords": [
  52. "string",
  53. "natural",
  54. "compare",
  55. "comparison",
  56. "order",
  57. "natcmp",
  58. "strnatcmp",
  59. "sort",
  60. "natsort",
  61. "alphanum",
  62. "alphanumeric"
  63. ],
  64. "license": "MIT",
  65. "main": "natural-compare.js",
  66. "name": "string-natural-compare",
  67. "nyc": {
  68. "reporter": [
  69. "html",
  70. "text-summary"
  71. ],
  72. "check-coverage": true,
  73. "branches": 100,
  74. "lines": 100,
  75. "statements": 100
  76. },
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/nwoltman/string-natural-compare.git"
  80. },
  81. "scripts": {
  82. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  83. "lint": "eslint .",
  84. "test": "eslint . && nyc mocha"
  85. },
  86. "version": "3.0.1"
  87. }