package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "github-slugger",
  3. "description": "Generate a slug just like GitHub does for markdown headings.",
  4. "version": "1.5.0",
  5. "author": "Dan Flettre <flettre@gmail.com>",
  6. "contributors": [
  7. "Dan Flettre <flettre@gmail.com>",
  8. "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  9. ],
  10. "bugs": {
  11. "url": "https://github.com/Flet/github-slugger/issues"
  12. },
  13. "files": [
  14. "index.js",
  15. "regex.js"
  16. ],
  17. "devDependencies": {
  18. "@octokit/rest": "^19.0.0",
  19. "@unicode/unicode-13.0.0": "^1.0.0",
  20. "hast-util-select": "^5.0.0",
  21. "mdast-util-gfm": "^2.0.0",
  22. "mdast-util-to-markdown": "^1.0.0",
  23. "node-fetch": "^3.0.0",
  24. "nyc": "^15.0.0",
  25. "regenerate": "^1.0.0",
  26. "rehype-parse": "^8.0.0",
  27. "standard": "*",
  28. "tap-spec": "^5.0.0",
  29. "tape": "^5.0.0",
  30. "unified": "^10.0.0"
  31. },
  32. "homepage": "https://github.com/Flet/github-slugger",
  33. "keywords": [
  34. "anchor",
  35. "github",
  36. "hash",
  37. "heading",
  38. "markdown",
  39. "slug",
  40. "slugger",
  41. "url"
  42. ],
  43. "license": "ISC",
  44. "main": "index.js",
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/Flet/github-slugger.git"
  48. },
  49. "scripts": {
  50. "format": "standard --fix",
  51. "test-api": "tape test | tap-spec",
  52. "test-coverage": "nyc --reporter lcov tape test/index.js | tap-spec",
  53. "test": "npm run format && npm run test-coverage"
  54. },
  55. "nyc": {
  56. "check-coverage": true,
  57. "lines": 100,
  58. "functions": 100,
  59. "branches": 100
  60. }
  61. }