{
  "name": "ts-sort-heap",
  "version": "1.0.1",
  "description": "heap sort an array in typescript",
  "main": "dist/index.js",
  "umd:main": "umd/index.js",
  "browser": "umd/index.js",
  "unpkg": "umd/index.js",
  "jsdelivr": "umd/index.js",
  "module": "esm/index.js",
  "jsnext:main": "esm/index.js",
  "react-native": "esm/index.js",
  "types": "types/index.d.ts",
  "typings": "types/index.d.ts",
  "source": "types/index.d.ts",
  "files": [
    "types",
    "dist",
    "esm",
    "umd",
    "LICENSE",
    "README.md"
  ],
  "exports": {
    "require": "./dist/index.js",
    "import": "./esm/index.js"
  },
  "sideEffects": false,
  "postCompile": true,
  "scripts": {
    "build:umd": "rollup -c ../../rollup.config.js --name tsSortHeap",
    "build:tscumdnotwork": "tsc --outDir umd --module UMD --target ES3",
    "build": "rimraf dist && rimraf esm && rimraf umd && tsc --outDir dist --module CommonJS --target ES5 && tsc --outDir esm --module ES2015  --target ES6 && npm run build:umd ",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "heapSort",
    "sort",
    "heap",
    "ts",
    "heap Sort",
    "typescript"
  ],
  "author": "jackieli",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jackieli123723/ts-sort-array"
  },
  "bugs": {
    "url": "https://github.com/jackieli123723/ts-sort-array/issues"
  },
  "homepage": "https://github.com/jackieli123723/ts-sort-array/packages/heapSort/README.md",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^10.0.0",
    "@types/node": "^14.11.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.33.1",
    "rollup-plugin-typescript2": "^0.29.0",
    "ts-node": "^9.0.0",
    "ttypescript": "^1.5.12",
    "typescript": "^4.0.3"
  },
  "gitHead": "b368fed6d5655aca683fde7448c6db210c94dd24"
}
