package.json 2.1 KB

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