package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "use",
  3. "description": "Easily add plugin support to your node.js application.",
  4. "version": "3.1.0",
  5. "homepage": "https://github.com/jonschlinkert/use",
  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. "Olsten Larck (https://i.am.charlike.online)",
  11. "(https://github.com/wtgtybhertgeghgtwtg)"
  12. ],
  13. "repository": "jonschlinkert/use",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/use/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "kind-of": "^6.0.2"
  30. },
  31. "devDependencies": {
  32. "base-plugins": "^1.0.0",
  33. "define-property": "^2.0.0",
  34. "extend-shallow": "^3.0.1",
  35. "gulp": "^3.9.1",
  36. "gulp-eslint": "^4.0.0",
  37. "gulp-format-md": "^1.0.0",
  38. "gulp-istanbul": "^1.1.2",
  39. "gulp-mocha": "^3.0.1",
  40. "mocha": "^4.0.1"
  41. },
  42. "keywords": [
  43. "use"
  44. ],
  45. "verb": {
  46. "related": {
  47. "list": [
  48. "base",
  49. "base-plugins",
  50. "ware"
  51. ]
  52. },
  53. "reflinks": [
  54. "verb",
  55. "ware"
  56. ],
  57. "toc": false,
  58. "layout": "default",
  59. "tasks": [
  60. "readme"
  61. ],
  62. "plugins": [
  63. "gulp-format-md"
  64. ],
  65. "lint": {
  66. "reflinks": true
  67. }
  68. }
  69. }