package.json 1.7 KB

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