package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "is-descriptor",
  3. "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.",
  4. "version": "1.0.2",
  5. "homepage": "https://github.com/jonschlinkert/is-descriptor",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Brian Woodward (https://twitter.com/doowb)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  10. "(https://github.com/wtgtybhertgeghgtwtg)"
  11. ],
  12. "repository": "jonschlinkert/is-descriptor",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/is-descriptor/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "is-accessor-descriptor": "^1.0.0",
  29. "is-data-descriptor": "^1.0.0",
  30. "kind-of": "^6.0.2"
  31. },
  32. "devDependencies": {
  33. "gulp-format-md": "^1.0.0",
  34. "mocha": "^3.5.3"
  35. },
  36. "keywords": [
  37. "accessor",
  38. "check",
  39. "data",
  40. "descriptor",
  41. "get",
  42. "getter",
  43. "is",
  44. "keys",
  45. "object",
  46. "properties",
  47. "property",
  48. "set",
  49. "setter",
  50. "type",
  51. "valid",
  52. "value"
  53. ],
  54. "verb": {
  55. "related": {
  56. "list": [
  57. "is-accessor-descriptor",
  58. "is-data-descriptor",
  59. "is-descriptor",
  60. "isobject"
  61. ]
  62. },
  63. "plugins": [
  64. "gulp-format-md"
  65. ],
  66. "toc": false,
  67. "layout": "default",
  68. "tasks": [
  69. "readme"
  70. ],
  71. "lint": {
  72. "reflinks": true
  73. }
  74. }
  75. }