package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "side-channel",
  3. "version": "1.0.4",
  4. "description": "Store information about any JS value in a side channel. Uses WeakMap if available.",
  5. "main": "index.js",
  6. "exports": {
  7. "./package.json": "./package.json",
  8. ".": [
  9. {
  10. "default": "./index.js"
  11. },
  12. "./index.js"
  13. ]
  14. },
  15. "scripts": {
  16. "prepublish": "safe-publish-latest",
  17. "lint": "eslint .",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "test": "npm run tests-only",
  21. "posttest": "npx aud --production",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/ljharb/side-channel.git"
  28. },
  29. "keywords": [
  30. "weakmap",
  31. "map",
  32. "side",
  33. "channel",
  34. "metadata"
  35. ],
  36. "author": "Jordan Harband <ljharb@gmail.com>",
  37. "funding": {
  38. "url": "https://github.com/sponsors/ljharb"
  39. },
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/ljharb/side-channel/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/side-channel#readme",
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^17.3.0",
  47. "aud": "^1.1.3",
  48. "auto-changelog": "^2.2.1",
  49. "eslint": "^7.16.0",
  50. "nyc": "^10.3.2",
  51. "safe-publish-latest": "^1.1.4",
  52. "tape": "^5.0.1"
  53. },
  54. "dependencies": {
  55. "call-bind": "^1.0.0",
  56. "get-intrinsic": "^1.0.2",
  57. "object-inspect": "^1.9.0"
  58. },
  59. "auto-changelog": {
  60. "output": "CHANGELOG.md",
  61. "template": "keepachangelog",
  62. "unreleased": false,
  63. "commitLimit": false,
  64. "backfillLimit": false,
  65. "hideCredit": true
  66. },
  67. "__npminstall_done": true,
  68. "_from": "side-channel@1.0.4",
  69. "_resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz"
  70. }