package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "is-accessor-descriptor",
  3. "version": "1.0.1",
  4. "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.",
  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. "prelint": "evalmd README.md",
  11. "lint": "eslint --ext=js,mjs .",
  12. "pretest": "npm run lint",
  13. "tests-only": "nyc tape 'test/**/*.js'",
  14. "test": "npm run tests-only",
  15. "posttest": "aud --production",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/inspect-js/is-accessor-descriptor.git"
  22. },
  23. "keywords": [
  24. "descriptor",
  25. "get",
  26. "getter",
  27. "is",
  28. "keys",
  29. "object",
  30. "properties",
  31. "property",
  32. "set",
  33. "setter",
  34. "type",
  35. "valid",
  36. "value"
  37. ],
  38. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/inspect-js/is-accessor-descriptor/issues"
  42. },
  43. "homepage": "https://github.com/inspect-js/is-accessor-descriptor",
  44. "contributors": [
  45. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  46. "Rouven Weßling (www.rouvenwessling.de)"
  47. ],
  48. "dependencies": {
  49. "hasown": "^2.0.0"
  50. },
  51. "devDependencies": {
  52. "@ljharb/eslint-config": "^21.1.0",
  53. "aud": "^2.0.3",
  54. "auto-changelog": "^2.4.0",
  55. "eslint": "=8.8.0",
  56. "evalmd": "^0.0.19",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.0",
  59. "nyc": "^10.3.2",
  60. "safe-publish-latest": "^2.0.0",
  61. "tape": "^5.7.2"
  62. },
  63. "engines": {
  64. "node": ">= 0.10"
  65. },
  66. "auto-changelog": {
  67. "output": "CHANGELOG.md",
  68. "template": "keepachangelog",
  69. "unreleased": false,
  70. "commitLimit": false,
  71. "backfillLimit": false,
  72. "hideCredit": true
  73. },
  74. "publishConfig": {
  75. "ignore": [
  76. ".github/workflows"
  77. ]
  78. }
  79. }