package.json 783 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "alphanum-sort",
  3. "version": "1.0.2",
  4. "description": "Alphanumeric sorting algorithm",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "devDependencies": {
  10. "eslint": "^1.5.1",
  11. "javascript-natural-sort": "^0.7.1",
  12. "tap-spec": "^4.1.0",
  13. "tape": "^4.2.0"
  14. },
  15. "scripts": {
  16. "test": "eslint lib test.js && tape test.js | tap-spec"
  17. },
  18. "author": "Bogdan Chadkin <trysound@yandex.ru>",
  19. "license": "MIT",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/TrySound/alphanum-sort.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/TrySound/alphanum-sort/issues"
  26. },
  27. "homepage": "https://github.com/TrySound/alphanum-sort",
  28. "keywords": [
  29. "sort",
  30. "alphanum",
  31. "alphanumeric",
  32. "natural",
  33. "human"
  34. ]
  35. }