package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "timsort",
  3. "version": "0.3.0",
  4. "author": {
  5. "name": "Marco Ziccardi",
  6. "url": "http://mziccard.me/"
  7. },
  8. "description": "TimSort: Fast Sorting for Node.js",
  9. "homepage": "https://github.com/mziccard/node-timsort",
  10. "main": "index.js",
  11. "directories": {
  12. "test": "./test",
  13. "benchmark": "./benchmark"
  14. },
  15. "dependencies": {},
  16. "devDependencies": {
  17. "assert": "~1.3.0",
  18. "babel-eslint": "^4.0.5",
  19. "eslint": "^1.1.0",
  20. "grunt": "^0.4.5",
  21. "grunt-babel": "^5.0.1",
  22. "grunt-banner": "^0.5.0",
  23. "grunt-contrib-clean": "^0.6.0",
  24. "grunt-contrib-uglify": "^0.9.1",
  25. "mocha": "~2.2.5"
  26. },
  27. "scripts": {
  28. "test": "mocha --timeout 5000",
  29. "lint": "eslint Gruntfile.js src/ test/ benchmark/index.js",
  30. "benchmark": "node benchmark/index.js"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/mziccard/node-timsort.git"
  35. },
  36. "keywords": [
  37. "sort",
  38. "compare",
  39. "TimSort",
  40. "algorithm",
  41. "python",
  42. "performance"
  43. ],
  44. "license": "MIT",
  45. "bugs": {
  46. "url": "https://github.com/mziccard/node-timsort/issues"
  47. }
  48. }