package.json 710 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "heap",
  3. "version": "0.2.7",
  4. "description": "binary heap (priority queue) algorithms (ported from Python's heapq module)",
  5. "homepage": "https://github.com/qiao/heap.js",
  6. "keywords": [
  7. "algorithm",
  8. "data structure",
  9. "heap"
  10. ],
  11. "author": "Xueqiao Xu <xueqiaoxu@gmail.com>",
  12. "main": "./index.js",
  13. "devDependencies": {
  14. "coffee-script": "1.3.x",
  15. "mocha": "2.1.x",
  16. "should": "0.6.x"
  17. },
  18. "scripts": {
  19. "test": "make test"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/qiao/heap.js.git"
  24. },
  25. "license": "MIT",
  26. "__npminstall_done": true,
  27. "_from": "heap@0.2.7",
  28. "_resolved": "https://registry.npmmirror.com/heap/-/heap-0.2.7.tgz"
  29. }