{
  "name": "heapsort",
  "version": "0.2.0",
  "description": "A JavaScript Heapsort Algorithm Implementation",
  "main": "./heapsort.js",
  "module": "./heapsort.js",
  "exports": "./heapsort.js",
  "type": "module",
  "files": [
    "heapsort.js"
  ],
  "scripts": {
    "test": "NODE_OPTIONS=--experimental-vm-modules jest"
  },
  "sideEffects": false,
  "repository": "alexeyraspopov/heapsort",
  "keywords": [
    "sorting",
    "algorithm",
    "heapsort"
  ],
  "author": "Alexey Raspopov (https://github.com/alexeyraspopov)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alexeyraspopov/heapsort/issues"
  },
  "homepage": "https://github.com/alexeyraspopov/heapsort",
  "devDependencies": {
    "jest": "^27.0.6"
  },
  "jest": {
    "transform": {}
  }
}
