package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "which-boxed-primitive",
  3. "version": "1.1.1",
  4. "description": "Which kind of boxed JS primitive is this?",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublishOnly": "safe-publish-latest",
  9. "prepublish": "not-in-publish || npm run prepublishOnly",
  10. "lint": "eslint --ext=js,mjs .",
  11. "postlint": "tsc -p . && attw -P",
  12. "pretest": "npm run lint",
  13. "tests-only": "nyc tape 'test/**/*.js'",
  14. "test": "npm run tests-only",
  15. "posttest": "npx npm@'>=10.2' audit --production",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/inspect-js/which-boxed-primitive.git"
  22. },
  23. "keywords": [
  24. "boxed",
  25. "primitive",
  26. "object",
  27. "ecmascript",
  28. "javascript",
  29. "which"
  30. ],
  31. "author": "Jordan Harband <ljharb@gmail.com>",
  32. "funding": {
  33. "url": "https://github.com/sponsors/ljharb"
  34. },
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/inspect-js/which-boxed-primitive/issues"
  38. },
  39. "homepage": "https://github.com/inspect-js/which-boxed-primitive#readme",
  40. "dependencies": {
  41. "is-bigint": "^1.1.0",
  42. "is-boolean-object": "^1.2.1",
  43. "is-number-object": "^1.1.1",
  44. "is-string": "^1.1.1",
  45. "is-symbol": "^1.1.1"
  46. },
  47. "devDependencies": {
  48. "@arethetypeswrong/cli": "^0.17.1",
  49. "@ljharb/eslint-config": "^21.1.1",
  50. "@ljharb/tsconfig": "^0.2.2",
  51. "@types/for-each": "^0.3.3",
  52. "@types/object-inspect": "^1.13.0",
  53. "@types/tape": "^5.7.0",
  54. "auto-changelog": "^2.5.0",
  55. "encoding": "^0.1.13",
  56. "es-value-fixtures": "^1.5.0",
  57. "eslint": "=8.8.0",
  58. "for-each": "^0.3.3",
  59. "in-publish": "^2.0.1",
  60. "npmignore": "^0.3.1",
  61. "nyc": "^10.3.2",
  62. "object-inspect": "^1.13.3",
  63. "safe-publish-latest": "^2.0.0",
  64. "tape": "^5.9.0",
  65. "typescript": "next"
  66. },
  67. "auto-changelog": {
  68. "output": "CHANGELOG.md",
  69. "template": "keepachangelog",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false,
  73. "hideCredit": true
  74. },
  75. "publishConfig": {
  76. "ignore": [
  77. ".github/workflows"
  78. ]
  79. },
  80. "engines": {
  81. "node": ">= 0.4"
  82. }
  83. }