Node-Red configuration
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

package.json 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "side-channel",
  3. "version": "1.0.6",
  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. ".": "./index.js"
  9. },
  10. "types": "./index.d.ts",
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  16. "lint": "eslint --ext=js,mjs .",
  17. "postlint": "tsc -p .",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape 'test/**/*.js'",
  20. "test": "npm run tests-only",
  21. "posttest": "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": "^21.1.0",
  47. "@types/call-bind": "^1.0.5",
  48. "@types/get-intrinsic": "^1.2.2",
  49. "@types/object-inspect": "^1.8.4",
  50. "@types/tape": "^5.6.4",
  51. "aud": "^2.0.4",
  52. "auto-changelog": "^2.4.0",
  53. "eclint": "^2.8.1",
  54. "eslint": "=8.8.0",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.1",
  57. "nyc": "^10.3.2",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.7.5",
  60. "typescript": "next"
  61. },
  62. "dependencies": {
  63. "call-bind": "^1.0.7",
  64. "es-errors": "^1.3.0",
  65. "get-intrinsic": "^1.2.4",
  66. "object-inspect": "^1.13.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. }