package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "unbox-primitive",
  3. "version": "1.0.2",
  4. "description": "Unbox a boxed JS primitive value.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "not-in-publish || npm run prepublishOnly",
  8. "prepublishOnly": "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/ljharb/unbox-primitive.git"
  20. },
  21. "keywords": [
  22. "unbox",
  23. "boxed",
  24. "primitive",
  25. "object",
  26. "javascript",
  27. "ecmascript"
  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/ljharb/unbox-primitive/issues"
  36. },
  37. "homepage": "https://github.com/ljharb/unbox-primitive#readme",
  38. "devDependencies": {
  39. "@ljharb/eslint-config": "^21.0.0",
  40. "aud": "^2.0.0",
  41. "auto-changelog": "^2.4.0",
  42. "eslint": "=8.8.0",
  43. "for-each": "^0.3.3",
  44. "in-publish": "^2.0.1",
  45. "nyc": "^10.3.2",
  46. "object-inspect": "^1.12.0",
  47. "object-is": "^1.1.5",
  48. "safe-publish-latest": "^2.0.0",
  49. "tape": "^5.5.3"
  50. },
  51. "dependencies": {
  52. "call-bind": "^1.0.2",
  53. "has-bigints": "^1.0.2",
  54. "has-symbols": "^1.0.3",
  55. "which-boxed-primitive": "^1.0.2"
  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. }