1002a3ab799fdfc7609e0b9e798c13b70fc9bac35b2d72424f720552e57bea1092ed89cf62b822833201b8bed3e734cda6b5f504c8a7a069b95c680a0b09a1 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "which-builtin-type",
  3. "version": "1.2.1",
  4. "description": "What is the type of this builtin JS value?",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "exports": {
  8. ".": "./index.js",
  9. "./package.json": "./package.json"
  10. },
  11. "sideEffects": false,
  12. "scripts": {
  13. "prepack": "npmignore --auto --commentLines=autogenerated",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "prepublishOnly": "safe-publish-latest",
  16. "prelint": "evalmd README.md",
  17. "lint": "eslint --ext=js,mjs .",
  18. "postlint": "tsc -P . && attw -P",
  19. "pretest": "npm run lint",
  20. "tests-only": "nyc tape 'test/**/*.js'",
  21. "test": "npm run tests-only",
  22. "posttest": "npx npm@'>=10.2' audit --production",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/inspect-js/which-builtin-type.git"
  29. },
  30. "keywords": [
  31. "type",
  32. "builtin",
  33. "ecmascript"
  34. ],
  35. "author": "Jordan Harband <ljharb@gmail.com>",
  36. "funding": {
  37. "url": "https://github.com/sponsors/ljharb"
  38. },
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/inspect-js/which-builtin-type/issues"
  42. },
  43. "homepage": "https://github.com/inspect-js/which-builtin-type#readme",
  44. "dependencies": {
  45. "call-bound": "^1.0.2",
  46. "function.prototype.name": "^1.1.6",
  47. "has-tostringtag": "^1.0.2",
  48. "is-async-function": "^2.0.0",
  49. "is-date-object": "^1.1.0",
  50. "is-finalizationregistry": "^1.1.0",
  51. "is-generator-function": "^1.0.10",
  52. "is-regex": "^1.2.1",
  53. "is-weakref": "^1.0.2",
  54. "isarray": "^2.0.5",
  55. "which-boxed-primitive": "^1.1.0",
  56. "which-collection": "^1.0.2",
  57. "which-typed-array": "^1.1.16"
  58. },
  59. "devDependencies": {
  60. "@arethetypeswrong/cli": "^0.17.1",
  61. "@ljharb/eslint-config": "^21.1.1",
  62. "@ljharb/tsconfig": "^0.2.2",
  63. "@types/for-each": "^0.3.3",
  64. "@types/function.prototype.name": "^1.1.4",
  65. "@types/is-async-function": "^2.0.3",
  66. "@types/is-date-object": "^1.0.4",
  67. "@types/is-generator-function": "^1.0.3",
  68. "@types/is-weakref": "^1.0.0",
  69. "@types/make-arrow-function": "^1.2.2",
  70. "@types/make-async-function": "^1.0.2",
  71. "@types/object-inspect": "^1.13.0",
  72. "@types/object.assign": "^4.1.0",
  73. "@types/tape": "^5.6.5",
  74. "@types/which-boxed-primitive": "^1.0.3",
  75. "auto-changelog": "^2.5.0",
  76. "available-typed-arrays": "^1.0.7",
  77. "encoding": "^0.1.13",
  78. "eslint": "=8.8.0",
  79. "evalmd": "^0.0.19",
  80. "for-each": "^0.3.3",
  81. "has-bigints": "^1.0.2",
  82. "has-symbols": "^1.1.0",
  83. "in-publish": "^2.0.1",
  84. "make-arrow-function": "^1.2.0",
  85. "make-async-function": "^1.0.0",
  86. "make-generator-function": "^2.0.0",
  87. "npmignore": "^0.3.1",
  88. "nyc": "^10.3.2",
  89. "object-inspect": "^1.13.3",
  90. "object.assign": "^4.1.5",
  91. "safe-publish-latest": "^2.0.0",
  92. "tape": "^5.9.0",
  93. "typescript": "next"
  94. },
  95. "engines": {
  96. "node": ">= 0.4"
  97. },
  98. "auto-changelog": {
  99. "output": "CHANGELOG.md",
  100. "template": "keepachangelog",
  101. "unreleased": false,
  102. "commitLimit": false,
  103. "backfillLimit": false,
  104. "hideCredit": true
  105. },
  106. "publishConfig": {
  107. "ignore": [
  108. ".github/workflows"
  109. ]
  110. }
  111. }