package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "string-natural-compare",
  3. "version": "3.0.1",
  4. "description": "Compare alphanumeric strings the same way a human would, using a natural order algorithm",
  5. "author": "Nathan Woltman <nwoltman@outlook.com>",
  6. "license": "MIT",
  7. "main": "natural-compare.js",
  8. "files": [
  9. "natural-compare.js"
  10. ],
  11. "repository": "github:nwoltman/string-natural-compare",
  12. "homepage": "https://github.com/nwoltman/string-natural-compare",
  13. "bugs": "https://github.com/nwoltman/string-natural-compare/issues",
  14. "keywords": [
  15. "string",
  16. "natural",
  17. "compare",
  18. "comparison",
  19. "order",
  20. "natcmp",
  21. "strnatcmp",
  22. "sort",
  23. "natsort",
  24. "alphanum",
  25. "alphanumeric"
  26. ],
  27. "eslintIgnore": [
  28. "benchmark/node_modules/",
  29. "coverage/"
  30. ],
  31. "nyc": {
  32. "reporter": [
  33. "html",
  34. "text-summary"
  35. ],
  36. "check-coverage": true,
  37. "branches": 100,
  38. "lines": 100,
  39. "statements": 100
  40. },
  41. "devDependencies": {
  42. "@nwoltman/eslint-config": "^0.6.0",
  43. "coveralls": "^3.0.9",
  44. "eslint": "^6.8.0",
  45. "mocha": "^7.0.0",
  46. "nyc": "^15.0.0",
  47. "should": "^13.2.3"
  48. },
  49. "scripts": {
  50. "lint": "eslint .",
  51. "test": "eslint . && nyc mocha",
  52. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  53. }
  54. }