{
  "manifest": {
    "name": "arraybuffer.prototype.slice",
    "version": "1.0.3",
    "description": "ES spec-compliant shim for ArrayBuffer.prototype.slice",
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "license": "MIT",
    "main": "index.js",
    "exports": {
      ".": "./index.js",
      "./auto": "./auto.js",
      "./polyfill": "./polyfill.js",
      "./implementation": "./implementation.js",
      "./shim": "./shim.js",
      "./package.json": "./package.json"
    },
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "prepublishOnly": "safe-publish-latest",
      "pretest": "npm run lint",
      "test": "npm run tests-only",
      "posttest": "aud --production",
      "tests-only": "nyc tape 'test/**/*.js'",
      "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "evalmd README.md && es-shim-api --bound",
      "version": "auto-changelog && git add CHANGELOG.md",
      "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/es-shims/ArrayBuffer.prototype.slice.git"
    },
    "homepage": "https://github.com/es-shims/ArrayBuffer.prototype.slice#readme",
    "bugs": {
      "url": "https://github.com/es-shims/ArrayBuffer.prototype.slice/issues"
    },
    "keywords": [
      "javascript",
      "ecmascript",
      "ArrayBuffer.prototype.slice",
      "polyfill",
      "shim",
      "ArrayBuffer",
      "array",
      "buffer",
      "ArrayBuffer#slice",
      "slice",
      "typed array",
      "es-shim API"
    ],
    "dependencies": {
      "array-buffer-byte-length": "^1.0.1",
      "call-bind": "^1.0.5",
      "define-properties": "^1.2.1",
      "es-abstract": "^1.22.3",
      "es-errors": "^1.2.1",
      "get-intrinsic": "^1.2.3",
      "is-array-buffer": "^3.0.4",
      "is-shared-array-buffer": "^1.0.2"
    },
    "devDependencies": {
      "@es-shims/api": "^2.4.2",
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.4",
      "auto-changelog": "^2.4.0",
      "covert": "^1.1.1",
      "eclint": "^2.8.1",
      "es-value-fixtures": "^1.4.2",
      "eslint": "=8.8.0",
      "evalmd": "^0.0.19",
      "for-each": "^0.3.3",
      "functions-have-names": "^1.2.3",
      "has-strict-mode": "^1.0.1",
      "in-publish": "^2.0.1",
      "npmignore": "^0.3.1",
      "nyc": "^10.3.2",
      "object-inspect": "^1.13.1",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.7.4"
    },
    "testling": {
      "files": "test/index.js"
    },
    "engines": {
      "node": ">= 0.4"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-arraybuffer-prototype-slice-1.0.3-097972f4255e41bc3425e37dc3f6421cf9aefde6-integrity/node_modules/arraybuffer.prototype.slice/package.json",
    "readmeFilename": "README.md",
    "readme": "# ArrayBuffer.prototype.slice <sup>[![Version Badge][npm-version-svg]][package-url]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nAn ES spec-compliant `ArrayBuffer.prototype.slice` shim. Invoke its \"shim\" method to shim ArrayBuffer.prototype.slice if it is unavailable.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES5-supported environment and complies with the [spec](https://tc39.es/ecma262/#sec-arraybuffer.prototype.slice).\n\nMost common usage:\n```js\nvar assert = require('assert');\nvar slice = require('arraybuffer.prototype.slice');\n\nvar ab = new ArrayBuffer(1);\nvar arr = new Uint8Array(ab);\narr[0] = 123;\n\nvar ab2 = slice(ab);\n\nvar arr2 = new Uint8Array(ab2);\narr2[0] = 234;\n\nassert.deepEqual(arr, new Uint8Array([123]));\nassert.deepEqual(arr2, new Uint8Array([234]));\n\nif (!ArrayBuffer.prototype.transfer) {\n\tslice.shim();\n}\n\nvar ab2 = ab.slice();\n\nvar arr2 = new Uint8Array(ab2);\narr2[0] = 234;\n\nassert.deepEqual(arr, new Uint8Array([123]));\nassert.deepEqual(arr2, new Uint8Array([234]));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/arraybuffer.prototype.slice\n[npm-version-svg]: https://versionbadg.es/es-shims/ArrayBuffer.prototype.slice.svg\n[deps-svg]: https://david-dm.org/es-shims/ArrayBuffer.prototype.slice.svg\n[deps-url]: https://david-dm.org/es-shims/ArrayBuffer.prototype.slice\n[dev-deps-svg]: https://david-dm.org/es-shims/ArrayBuffer.prototype.slice/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/ArrayBuffer.prototype.slice#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/arraybuffer.prototype.slice.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/arraybuffer.prototype.slice.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/arraybuffer.prototype.slice.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=arraybuffer.prototype.slice\n[codecov-image]: https://codecov.io/gh/es-shims/ArrayBuffer.prototype.slice/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/ArrayBuffer.prototype.slice/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/ArrayBuffer.prototype.slice\n[actions-url]: https://github.com/es-shims/ArrayBuffer.prototype.slice/actions\n",
    "licenseText": "MIT License\n\nCopyright (c) 2023 ECMAScript Shims\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz",
    "hash": "097972f4255e41bc3425e37dc3f6421cf9aefde6",
    "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==",
    "registry": "npm",
    "packageName": "arraybuffer.prototype.slice",
    "cacheIntegrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== sha1-CXly9CVeQbw0JeN9w/ZCHPmu/eY="
  },
  "registry": "npm",
  "hash": "097972f4255e41bc3425e37dc3f6421cf9aefde6"
}