選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "parse-author",
  3. "description": "Parse an author, contributor, maintainer or other 'person' string into an object with name, email and url properties following npm conventions.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/parse-author",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
  9. "Sean Lang <slang800@gmail.com> (http://slang.cx)",
  10. "Tim Oram <mitmaro@gmail.com> (http://www.mitmaro.ca)"
  11. ],
  12. "repository": "jonschlinkert/parse-author",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/parse-author/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. "author-regex": "^1.0.0"
  29. },
  30. "devDependencies": {
  31. "mocha": "^3.2.0"
  32. },
  33. "keywords": [
  34. "author",
  35. "authors",
  36. "contributor",
  37. "exec",
  38. "expression",
  39. "extract",
  40. "maintainer",
  41. "maintainers",
  42. "match",
  43. "package",
  44. "parse",
  45. "person",
  46. "pkg",
  47. "re",
  48. "regex",
  49. "regexp",
  50. "regular",
  51. "somebody"
  52. ],
  53. "verb": {
  54. "run": true,
  55. "toc": false,
  56. "layout": "default",
  57. "tasks": [
  58. "readme"
  59. ],
  60. "plugins": [
  61. "gulp-format-md"
  62. ],
  63. "related": {
  64. "list": [
  65. "author-regex",
  66. "parse-authors",
  67. "stringify-author",
  68. "stringify-authors"
  69. ]
  70. },
  71. "reflinks": [
  72. "verb"
  73. ],
  74. "lint": {
  75. "reflinks": true
  76. }
  77. }
  78. }