package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "which-boxed-primitive",
  3. "version": "1.0.2",
  4. "description": "Which kind of boxed JS primitive is this?",
  5. "main": "index.js",
  6. "scripts": {
  7. "preversion": "auto-changelog",
  8. "prepublish": "not-in-publish || safe-publish-latest",
  9. "lint": "eslint --ext=js,mjs .",
  10. "pretest": "npm run lint",
  11. "tests-only": "nyc tape 'test/**/*.js'",
  12. "test": "npm run tests-only",
  13. "posttest": "aud --production",
  14. "version": "auto-changelog && git add CHANGELOG.md",
  15. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/inspect-js/which-boxed-primitive.git"
  20. },
  21. "keywords": [
  22. "boxed",
  23. "primitive",
  24. "object",
  25. "ecmascript",
  26. "javascript",
  27. "which"
  28. ],
  29. "author": "Jordan Harband <ljharb@gmail.com>",
  30. "funding": {
  31. "url": "https://github.com/sponsors/ljharb"
  32. },
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/inspect-js/which-boxed-primitive/issues"
  36. },
  37. "homepage": "https://github.com/inspect-js/which-boxed-primitive#readme",
  38. "dependencies": {
  39. "is-bigint": "^1.0.1",
  40. "is-boolean-object": "^1.1.0",
  41. "is-number-object": "^1.0.4",
  42. "is-string": "^1.0.5",
  43. "is-symbol": "^1.0.3"
  44. },
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^17.3.0",
  47. "aud": "^1.1.3",
  48. "auto-changelog": "^2.2.1",
  49. "eslint": "^7.15.0",
  50. "has-symbols": "^1.0.1",
  51. "in-publish": "^2.0.1",
  52. "nyc": "^10.3.2",
  53. "object-inspect": "^1.9.0",
  54. "safe-publish-latest": "^1.1.4",
  55. "tape": "^5.0.1"
  56. },
  57. "auto-changelog": {
  58. "output": "CHANGELOG.md",
  59. "template": "keepachangelog",
  60. "unreleased": false,
  61. "commitLimit": false,
  62. "backfillLimit": false,
  63. "hideCredit": true
  64. }
  65. }