package.json 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "default-compare",
  3. "description": "Basic sort algorithm that has similar behavior to Array.prototype.sort for null and undefined, but also allows sorting by an object property.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/doowb/default-compare",
  6. "author": "Brian Woodward (https://doowb.com)",
  7. "repository": "doowb/default-compare",
  8. "bugs": {
  9. "url": "https://github.com/doowb/default-compare/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "kind-of": "^5.0.2"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^1.0.0",
  27. "mocha": "^3.5.2"
  28. },
  29. "keywords": [
  30. "compare",
  31. "default"
  32. ],
  33. "verb": {
  34. "toc": false,
  35. "layout": "default",
  36. "tasks": [
  37. "readme"
  38. ],
  39. "plugins": [
  40. "gulp-format-md"
  41. ],
  42. "lint": {
  43. "reflinks": true
  44. }
  45. }
  46. }