package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "internal-slot",
  3. "version": "1.0.3",
  4. "description": "ES spec-like internal slots",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "safe-publish-latest",
  8. "version": "auto-changelog && git add CHANGELOG.md",
  9. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  10. "pretest": "npm run lint",
  11. "lint": "eslint .",
  12. "tests-only": "nyc tape 'test/**/*.js'",
  13. "test": "npm run tests-only",
  14. "posttest": "aud --production"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/ljharb/internal-slot.git"
  19. },
  20. "keywords": [
  21. "internal",
  22. "slot",
  23. "internal slot",
  24. "ecmascript",
  25. "es",
  26. "spec",
  27. "private",
  28. "data",
  29. "private data",
  30. "weakmap"
  31. ],
  32. "author": "Jordan Harband <ljharb@gmail.com>",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/ljharb/internal-slot/issues"
  36. },
  37. "homepage": "https://github.com/ljharb/internal-slot#readme",
  38. "engines": {
  39. "node": ">= 0.4"
  40. },
  41. "devDependencies": {
  42. "@ljharb/eslint-config": "^17.5.0",
  43. "aud": "^1.1.3",
  44. "auto-changelog": "^2.2.1",
  45. "eslint": "^7.18.0",
  46. "foreach": "^2.0.5",
  47. "nyc": "^10.3.2",
  48. "object-inspect": "^1.9.0",
  49. "safe-publish-latest": "^1.1.4",
  50. "tape": "^5.1.1"
  51. },
  52. "dependencies": {
  53. "get-intrinsic": "^1.1.0",
  54. "has": "^1.0.3",
  55. "side-channel": "^1.0.4"
  56. },
  57. "auto-changelog": {
  58. "output": "CHANGELOG.md",
  59. "unreleased": false,
  60. "commitLimit": false,
  61. "backfillLimit": false
  62. }
  63. }