package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "internal-slot",
  3. "version": "1.1.0",
  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 --ext=js,mjs .",
  14. "postlint": "tsc && attw -P",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test": "npm run tests-only",
  17. "posttest": "npx npm@'>= 10.2' audit --production"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/ljharb/internal-slot.git"
  22. },
  23. "keywords": [
  24. "internal",
  25. "slot",
  26. "internal slot",
  27. "ecmascript",
  28. "es",
  29. "spec",
  30. "private",
  31. "data",
  32. "private data",
  33. "weakmap"
  34. ],
  35. "author": "Jordan Harband <ljharb@gmail.com>",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/ljharb/internal-slot/issues"
  39. },
  40. "homepage": "https://github.com/ljharb/internal-slot#readme",
  41. "engines": {
  42. "node": ">= 0.4"
  43. },
  44. "devDependencies": {
  45. "@arethetypeswrong/cli": "^0.17.1",
  46. "@ljharb/eslint-config": "^21.1.1",
  47. "@ljharb/tsconfig": "^0.2.2",
  48. "@types/for-each": "^0.3.3",
  49. "@types/object-inspect": "^1.13.0",
  50. "@types/tape": "^5.6.5",
  51. "auto-changelog": "^2.5.0",
  52. "encoding": "^0.1.13",
  53. "eslint": "=8.8.0",
  54. "for-each": "^0.3.3",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.1",
  57. "nyc": "^10.3.2",
  58. "object-inspect": "^1.13.3",
  59. "safe-publish-latest": "^2.0.0",
  60. "tape": "^5.9.0",
  61. "typescript": "next"
  62. },
  63. "dependencies": {
  64. "es-errors": "^1.3.0",
  65. "hasown": "^2.0.2",
  66. "side-channel": "^1.1.0"
  67. },
  68. "auto-changelog": {
  69. "output": "CHANGELOG.md",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false
  73. },
  74. "publishConfig": {
  75. "ignore": [
  76. ".github/workflows"
  77. ]
  78. }
  79. }