package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "is-data-view",
  3. "version": "1.0.1",
  4. "description": "Is this value a JS DataView? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "types": "./index.d.ts",
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "prelint": "evalmd README.md",
  16. "lint": "eslint --ext=js,mjs .",
  17. "postlint": "tsc -p .",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "test": "npm run tests-only",
  21. "posttest": "aud --production",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "funding": {
  26. "url": "https://github.com/sponsors/ljharb"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/inspect-js/is-data-view.git"
  31. },
  32. "keywords": [
  33. "javascript",
  34. "ecmascript",
  35. "dataview",
  36. "data",
  37. "view",
  38. "typedarray",
  39. "typedarrays"
  40. ],
  41. "author": "Jordan Harband <ljharb@gmail.com>",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/inspect-js/is-data-view/issues"
  45. },
  46. "homepage": "https://github.com/inspect-js/is-data-view#readme",
  47. "dependencies": {
  48. "is-typed-array": "^1.1.13"
  49. },
  50. "devDependencies": {
  51. "@ljharb/eslint-config": "^21.1.0",
  52. "@types/call-bind": "^1.0.5",
  53. "@types/es-value-fixtures": "^1.4.4",
  54. "@types/for-each": "^0.3.3",
  55. "@types/make-arrow-function": "^1.2.2",
  56. "@types/make-generator-function": "^2.0.3",
  57. "@types/node": "^20.11.14",
  58. "@types/object-inspect": "^1.8.4",
  59. "@types/tape": "^5.6.4",
  60. "aud": "^2.0.4",
  61. "auto-changelog": "^2.4.0",
  62. "available-typed-arrays": "^1.0.6",
  63. "es-value-fixtures": "^1.4.2",
  64. "eslint": "=8.8.0",
  65. "evalmd": "^0.0.19",
  66. "for-each": "^0.3.3",
  67. "has-tostringtag": "^1.0.2",
  68. "in-publish": "^2.0.1",
  69. "make-arrow-function": "^1.2.0",
  70. "make-generator-function": "^2.0.0",
  71. "npmignore": "^0.3.1",
  72. "nyc": "^10.3.2",
  73. "object-inspect": "^1.13.1",
  74. "safe-publish-latest": "^2.0.0",
  75. "tape": "^5.7.4",
  76. "typescript": "next"
  77. },
  78. "testling": {
  79. "files": "test/index.js"
  80. },
  81. "engines": {
  82. "node": ">= 0.4"
  83. },
  84. "auto-changelog": {
  85. "output": "CHANGELOG.md",
  86. "template": "keepachangelog",
  87. "unreleased": false,
  88. "commitLimit": false,
  89. "backfillLimit": false,
  90. "hideCredit": true
  91. },
  92. "publishConfig": {
  93. "ignore": [
  94. ".github/workflows"
  95. ]
  96. }
  97. }