package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "buffer-equal",
  3. "description": "return whether two buffers are equal",
  4. "version": "1.0.1",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/inspect-js/buffer-equal.git"
  8. },
  9. "main": "index.js",
  10. "keywords": [
  11. "buffer",
  12. "equal"
  13. ],
  14. "directories": {
  15. "example": "example",
  16. "test": "test"
  17. },
  18. "scripts": {
  19. "prepack": "npmignore --auto --commentLines=autogenerated",
  20. "prepublish": "not-in-publish || npm run prepublishOnly",
  21. "prepublishOnly": "safe-publish-latest",
  22. "lint": "eslint --ext=js,mjs .",
  23. "pretest": "npm run lint",
  24. "tests-only": "tape 'test/**/*.js'",
  25. "test": "npm run tests-only",
  26. "posttest": "aud --production",
  27. "version": "auto-changelog && git add CHANGELOG.md",
  28. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  29. },
  30. "devDependencies": {
  31. "@ljharb/eslint-config": "^21.0.0",
  32. "aud": "^2.0.1",
  33. "auto-changelog": "^2.4.0",
  34. "eslint": "=8.8.0",
  35. "in-publish": "^2.0.1",
  36. "npmignore": "^0.3.0",
  37. "safe-publish-latest": "^2.0.0",
  38. "tape": "^5.6.1"
  39. },
  40. "engines": {
  41. "node": ">=0.4"
  42. },
  43. "license": "MIT",
  44. "author": {
  45. "name": "James Halliday",
  46. "email": "mail@substack.net",
  47. "url": "http://substack.net"
  48. },
  49. "funding": {
  50. "url": "https://github.com/sponsors/ljharb"
  51. },
  52. "auto-changelog": {
  53. "output": "CHANGELOG.md",
  54. "template": "keepachangelog",
  55. "unreleased": false,
  56. "commitLimit": false,
  57. "backfillLimit": false,
  58. "hideCredit": true
  59. },
  60. "publishConfig": {
  61. "ignore": [
  62. ".github/workflows"
  63. ]
  64. }
  65. }