package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "comment-parser",
  3. "version": "0.5.5",
  4. "description": "Generic JSDoc-like comment parser. ",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "directories": {
  8. "test": "tests"
  9. },
  10. "dependencies": {},
  11. "devDependencies": {
  12. "chai": "^4.2.0",
  13. "eslint": "^5.16.0",
  14. "eslint-config-standard": "^10.2.1",
  15. "eslint-plugin-import": "^2.7.0",
  16. "eslint-plugin-node": "^5.1.1",
  17. "eslint-plugin-promise": "^3.5.0",
  18. "eslint-plugin-standard": "^3.0.1",
  19. "mocha": "^5.2.0",
  20. "nodemon": "^1.18.9"
  21. },
  22. "scripts": {
  23. "test:lint": "eslint .",
  24. "test:unit": "mocha tests",
  25. "test": "npm run test:lint && npm run test:unit",
  26. "watch": "nodemon -q -i node_modules -x npm test"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git@github.com:yavorskiy/comment-parser.git"
  31. },
  32. "keywords": [
  33. "jsdoc",
  34. "comments",
  35. "parser"
  36. ],
  37. "author": "Sergii Iavorskyi <yavorskiy.s@gmail.com> (https://github.com/yavorskiy)",
  38. "contributors": [
  39. "Alexej Yaroshevich (https://github.com/zxqfox)",
  40. "Dieter Oberkofler (https://github.com/doberkofler)",
  41. "Evgeny Reznichenko (https://github.com/zxcabs)",
  42. "Javier \"Ciberma\" Mora (https://github.com/jhm-ciberman)",
  43. "Jordan Harband (https://github.com/ljharb)",
  44. "tengattack (https://github.com/tengattack)"
  45. ],
  46. "license": "MIT",
  47. "bugs": {
  48. "url": "https://github.com/yavorskiy/comment-parser/issues"
  49. },
  50. "homepage": "https://github.com/yavorskiy/comment-parser"
  51. }