927427cfc30a2d46d47ed0061a55dead90aa3fa3486267537fd07420a865f55dbbd951c73f2a959b98ad7ad0d2a0370e8b833a22c3ab12240d61171f6b7c0f 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "name": "typedarray.prototype.slice",
  3. "version": "1.0.5",
  4. "description": "ES spec-compliant shim for TypedArray.prototype.slice",
  5. "author": "Jordan Harband <ljharb@gmail.com>",
  6. "funding": {
  7. "url": "https://github.com/sponsors/ljharb"
  8. },
  9. "license": "MIT",
  10. "main": "index.js",
  11. "exports": {
  12. ".": "./index.js",
  13. "./auto": "./auto.js",
  14. "./polyfill": "./polyfill.js",
  15. "./implementation": "./implementation.js",
  16. "./shim": "./shim.js",
  17. "./package.json": "./package.json"
  18. },
  19. "scripts": {
  20. "prepack": "npmignore --auto --commentLines=autogenerated",
  21. "prepublish": "not-in-publish || npm run prepublishOnly",
  22. "prepublishOnly": "safe-publish-latest",
  23. "pretest": "npm run lint",
  24. "test": "npm run tests-only",
  25. "posttest": "npx npm@'>= 10.2' audit --production",
  26. "tests-only": "nyc tape 'test/**/*.js'",
  27. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  28. "lint": "eslint --ext=js,mjs .",
  29. "postlint": "evalmd README.md && es-shim-api --bound",
  30. "version": "auto-changelog && git add CHANGELOG.md",
  31. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/es-shims/TypedArray.prototype.slice.git"
  36. },
  37. "homepage": "https://github.com/es-shims/TypedArray.prototype.slice#readme",
  38. "bugs": {
  39. "url": "https://github.com/es-shims/TypedArray.prototype.slice/issues"
  40. },
  41. "keywords": [
  42. "javascript",
  43. "ecmascript",
  44. "TypedArray.prototype.slice",
  45. "polyfill",
  46. "shim",
  47. "Typed Arrays",
  48. "array",
  49. "buffer",
  50. "TypedArray#slice",
  51. "slice",
  52. "typed array",
  53. "es-shim API"
  54. ],
  55. "dependencies": {
  56. "call-bind": "^1.0.8",
  57. "define-properties": "^1.2.1",
  58. "es-abstract": "^1.23.9",
  59. "es-errors": "^1.3.0",
  60. "get-proto": "^1.0.1",
  61. "math-intrinsics": "^1.1.0",
  62. "typed-array-buffer": "^1.0.3",
  63. "typed-array-byte-offset": "^1.0.4"
  64. },
  65. "devDependencies": {
  66. "@es-shims/api": "^2.5.1",
  67. "@ljharb/eslint-config": "^21.1.1",
  68. "auto-changelog": "^2.5.0",
  69. "available-typed-arrays": "^1.0.7",
  70. "eclint": "^2.8.1",
  71. "encoding": "^0.1.13",
  72. "es-value-fixtures": "^1.5.0",
  73. "eslint": "=8.8.0",
  74. "evalmd": "^0.0.19",
  75. "for-each": "^0.3.3",
  76. "functions-have-names": "^1.2.3",
  77. "has-strict-mode": "^1.0.1",
  78. "in-publish": "^2.0.1",
  79. "npmignore": "^0.3.1",
  80. "nyc": "^10.3.2",
  81. "object-inspect": "^1.13.3",
  82. "safe-publish-latest": "^2.0.0",
  83. "tape": "^5.9.0"
  84. },
  85. "testling": {
  86. "files": "test/index.js"
  87. },
  88. "engines": {
  89. "node": ">= 0.4"
  90. },
  91. "auto-changelog": {
  92. "output": "CHANGELOG.md",
  93. "template": "keepachangelog",
  94. "unreleased": false,
  95. "commitLimit": false,
  96. "backfillLimit": false,
  97. "hideCredit": true
  98. },
  99. "publishConfig": {
  100. "ignore": [
  101. ".github/workflows"
  102. ]
  103. }
  104. }