package.json 1.7 KB

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