package.json 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "compare-func",
  3. "version": "2.0.0",
  4. "description": "Get a compare function for array to sort",
  5. "homepage": "https://github.com/stevemao/compare-func",
  6. "author": {
  7. "name": "Steve Mao",
  8. "email": "maochenyan@gmail.com",
  9. "url": "https://github.com/stevemao"
  10. },
  11. "repository": "stevemao/compare-func",
  12. "license": "MIT",
  13. "files": [
  14. "index.js"
  15. ],
  16. "keywords": [
  17. "compare-func",
  18. "arr",
  19. "array",
  20. "by",
  21. "compare",
  22. "dot",
  23. "get",
  24. "obj",
  25. "object",
  26. "prop",
  27. "property",
  28. "sort",
  29. "sorting"
  30. ],
  31. "dependencies": {
  32. "array-ify": "^1.0.0",
  33. "dot-prop": "^5.1.0"
  34. },
  35. "devDependencies": {
  36. "coveralls": "^2.11.2",
  37. "istanbul": "^0.4.4",
  38. "jscs": "^3.0.5",
  39. "jshint": "^2.7.0",
  40. "mocha": "^7.1.2"
  41. },
  42. "scripts": {
  43. "coverage": "istanbul cover _mocha -- -R spec && rm -rf ./coverage",
  44. "lint": "jshint *.js --exclude node_modules && jscs *.js",
  45. "test": "npm run-script lint && mocha"
  46. }
  47. }