package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "array-sort",
  3. "description": "Fast and powerful array sorting. Sort an array of objects by one or more properties. Any number of nested properties or custom comparison functions may be used.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/array-sort",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Jan Stola (https://github.com/iamstolis)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "Kevin Ward (https://github.com/wkevina)"
  12. ],
  13. "repository": "jonschlinkert/array-sort",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/array-sort/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "default-compare": "^1.0.0",
  30. "get-value": "^2.0.6",
  31. "kind-of": "^5.0.2"
  32. },
  33. "devDependencies": {
  34. "ansi-bold": "^0.1.1",
  35. "benchmarked": "^0.1.5",
  36. "glob": "^7.0.3",
  37. "gulp-format-md": "^0.1.8",
  38. "lodash.sortbyorder": "^3.4.4",
  39. "mocha": "^2.4.5",
  40. "should": "^8.3.1"
  41. },
  42. "keywords": [
  43. "arr",
  44. "array",
  45. "asc",
  46. "ascend",
  47. "ascending",
  48. "desc",
  49. "descend",
  50. "descending",
  51. "dot",
  52. "element",
  53. "elements",
  54. "get",
  55. "multiple",
  56. "nested",
  57. "obj",
  58. "object",
  59. "order",
  60. "ordered",
  61. "path",
  62. "prop",
  63. "properties",
  64. "property",
  65. "sort",
  66. "sorted",
  67. "sorting"
  68. ],
  69. "verb": {
  70. "reflinks": [
  71. "verb"
  72. ],
  73. "related": {
  74. "list": [
  75. "get-value",
  76. "set-value",
  77. "sort-asc",
  78. "sort-desc",
  79. "sort-object"
  80. ]
  81. },
  82. "toc": false,
  83. "layout": "default",
  84. "tasks": [
  85. "readme"
  86. ],
  87. "plugins": [
  88. "gulp-format-md"
  89. ],
  90. "lint": {
  91. "reflinks": true
  92. }
  93. }
  94. }