package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "static-extend",
  3. "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.",
  4. "version": "0.1.2",
  5. "homepage": "https://github.com/jonschlinkert/static-extend",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/static-extend",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/static-extend/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "define-property": "^0.2.5",
  24. "object-copy": "^0.1.0"
  25. },
  26. "devDependencies": {
  27. "gulp-format-md": "^0.1.9",
  28. "mocha": "^2.5.3"
  29. },
  30. "keywords": [
  31. "class",
  32. "ctor",
  33. "descriptor",
  34. "extend",
  35. "extends",
  36. "inherit",
  37. "inheritance",
  38. "merge",
  39. "method",
  40. "prop",
  41. "properties",
  42. "property",
  43. "prototype"
  44. ],
  45. "verb": {
  46. "run": true,
  47. "toc": false,
  48. "layout": "default",
  49. "tasks": [
  50. "readme"
  51. ],
  52. "plugins": [
  53. "gulp-format-md"
  54. ],
  55. "reflinks": [
  56. "verb",
  57. "verb-readme-generator"
  58. ],
  59. "lint": {
  60. "reflinks": true
  61. }
  62. }
  63. }