package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "tinyqueue",
  3. "version": "2.0.3",
  4. "description": "The smallest and simplest JavaScript priority queue",
  5. "main": "tinyqueue.js",
  6. "module": "index.js",
  7. "jsdelivr": "tinyqueue.min.js",
  8. "unpkg": "tinyqueue.min.js",
  9. "types": "index.d.ts",
  10. "scripts": {
  11. "lint": "eslint index.js test.js bench.js rollup.config.js",
  12. "pretest": "npm run lint",
  13. "test": "tape -r esm test.js",
  14. "bench": "node -r esm bench.js",
  15. "build": "rollup -c",
  16. "watch": "rollup -cw",
  17. "prepublishOnly": "npm test"
  18. },
  19. "files": [
  20. "index.js",
  21. "tinyqueue.js",
  22. "tinyqueue.min.js",
  23. "index.d.ts"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/mourner/tinyqueue.git"
  28. },
  29. "keywords": [
  30. "queue",
  31. "priority",
  32. "binary heap",
  33. "data structures"
  34. ],
  35. "author": "",
  36. "license": "ISC",
  37. "bugs": {
  38. "url": "https://github.com/mourner/tinyqueue/issues"
  39. },
  40. "homepage": "https://github.com/mourner/tinyqueue",
  41. "devDependencies": {
  42. "eslint": "^5.16.0",
  43. "eslint-config-mourner": "^3.0.0",
  44. "esm": "^3.2.25",
  45. "rollup": "^1.15.4",
  46. "rollup-plugin-buble": "^0.19.6",
  47. "rollup-plugin-terser": "^5.0.0",
  48. "tape": "^4.10.2"
  49. },
  50. "eslintConfig": {
  51. "extends": "mourner"
  52. }
  53. }