package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "define-property",
  3. "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.",
  4. "version": "2.0.2",
  5. "homepage": "https://github.com/jonschlinkert/define-property",
  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. ],
  11. "repository": "jonschlinkert/define-property",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/define-property/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js"
  18. ],
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "scripts": {
  24. "test": "mocha"
  25. },
  26. "dependencies": {
  27. "is-descriptor": "^1.0.2",
  28. "isobject": "^3.0.1"
  29. },
  30. "devDependencies": {
  31. "gulp-format-md": "^1.0.0",
  32. "mocha": "^3.5.3"
  33. },
  34. "keywords": [
  35. "define",
  36. "define-property",
  37. "enumerable",
  38. "key",
  39. "non",
  40. "non-enumerable",
  41. "object",
  42. "prop",
  43. "property",
  44. "value"
  45. ],
  46. "verb": {
  47. "toc": false,
  48. "layout": "default",
  49. "tasks": [
  50. "readme"
  51. ],
  52. "plugins": [
  53. "gulp-format-md"
  54. ],
  55. "related": {
  56. "list": [
  57. "assign-deep",
  58. "extend-shallow",
  59. "merge-deep",
  60. "mixin-deep"
  61. ]
  62. },
  63. "lint": {
  64. "reflinks": true
  65. }
  66. }
  67. }