package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "is-descriptor",
  3. "version": "1.0.3",
  4. "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.",
  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. "prelint": "evalmd README.md",
  15. "lint": "eslint --ext=js,mjs .",
  16. "pretest": "npm run lint",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "test": "npm run tests-only",
  19. "posttest": "aud --production",
  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-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-descriptor/issues"
  49. },
  50. "homepage": "https://github.com/inspect-js/is-descriptor",
  51. "contributors": [
  52. "Brian Woodward (https://twitter.com/doowb)",
  53. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  54. "(https://github.com/wtgtybhertgeghgtwtg)"
  55. ],
  56. "dependencies": {
  57. "is-accessor-descriptor": "^1.0.1",
  58. "is-data-descriptor": "^1.0.1"
  59. },
  60. "devDependencies": {
  61. "@ljharb/eslint-config": "^21.1.0",
  62. "aud": "^2.0.3",
  63. "auto-changelog": "^2.4.0",
  64. "eslint": "=8.8.0",
  65. "evalmd": "^0.0.19",
  66. "in-publish": "^2.0.1",
  67. "npmignore": "^0.3.0",
  68. "nyc": "^10.3.2",
  69. "safe-publish-latest": "^2.0.0",
  70. "tape": "^5.7.2"
  71. },
  72. "engines": {
  73. "node": ">= 0.4"
  74. },
  75. "auto-changelog": {
  76. "output": "CHANGELOG.md",
  77. "template": "keepachangelog",
  78. "unreleased": false,
  79. "commitLimit": false,
  80. "backfillLimit": false,
  81. "hideCredit": true
  82. },
  83. "publishConfig": {
  84. "ignore": [
  85. ".github/workflows"
  86. ]
  87. }
  88. }