package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "unbox-primitive",
  3. "version": "1.1.0",
  4. "description": "Unbox a boxed JS primitive value.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublish": "not-in-publish || npm run prepublishOnly",
  9. "prepublishOnly": "safe-publish-latest",
  10. "lint": "eslint --ext=js,mjs .",
  11. "postlint": "tsc && 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/ljharb/unbox-primitive.git"
  22. },
  23. "keywords": [
  24. "unbox",
  25. "boxed",
  26. "primitive",
  27. "object",
  28. "javascript",
  29. "ecmascript"
  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/ljharb/unbox-primitive/issues"
  38. },
  39. "homepage": "https://github.com/ljharb/unbox-primitive#readme",
  40. "devDependencies": {
  41. "@arethetypeswrong/cli": "^0.17.1",
  42. "@ljharb/eslint-config": "^21.1.1",
  43. "@ljharb/tsconfig": "^0.2.2",
  44. "@types/for-each": "^0.3.3",
  45. "@types/object-inspect": "^1.13.0",
  46. "@types/object-is": "^1.1.0",
  47. "@types/tape": "^5.7.0",
  48. "auto-changelog": "^2.5.0",
  49. "encoding": "^0.1.13",
  50. "es-value-fixtures": "^1.5.0",
  51. "eslint": "=8.8.0",
  52. "for-each": "^0.3.3",
  53. "in-publish": "^2.0.1",
  54. "npmignore": "^0.3.1",
  55. "nyc": "^10.3.2",
  56. "object-inspect": "^1.13.3",
  57. "object-is": "^1.1.6",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.9.0",
  60. "typescript": "next"
  61. },
  62. "dependencies": {
  63. "call-bound": "^1.0.3",
  64. "has-bigints": "^1.0.2",
  65. "has-symbols": "^1.1.0",
  66. "which-boxed-primitive": "^1.1.1"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "template": "keepachangelog",
  71. "unreleased": false,
  72. "commitLimit": false,
  73. "backfillLimit": false,
  74. "hideCredit": true
  75. },
  76. "publishConfig": {
  77. "ignore": [
  78. ".github/workflows"
  79. ]
  80. },
  81. "engines": {
  82. "node": ">= 0.4"
  83. }
  84. }