package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "linkify-it",
  3. "version": "3.0.3",
  4. "description": "Links recognition library with FULL unicode support",
  5. "keywords": [
  6. "linkify",
  7. "linkifier",
  8. "autolink",
  9. "autolinker"
  10. ],
  11. "repository": "markdown-it/linkify-it",
  12. "files": [
  13. "index.js",
  14. "lib/"
  15. ],
  16. "license": "MIT",
  17. "scripts": {
  18. "lint": "eslint .",
  19. "test": "npm run lint && nyc mocha",
  20. "coverage": "npm run test && nyc report --reporter html",
  21. "report-coveralls": "nyc report --reporter=text-lcov | coveralls",
  22. "demo": "npm run lint && node support/build_demo.js",
  23. "doc": "node support/build_doc.js",
  24. "gh-pages": "npm run demo && npm run doc && shx cp -R doc/ demo/ && gh-pages -d demo -f",
  25. "prepublishOnly": "npm run gh-pages"
  26. },
  27. "dependencies": {
  28. "uc.micro": "^1.0.1"
  29. },
  30. "devDependencies": {
  31. "ansi": "^0.3.0",
  32. "autoprefixer-stylus": "^0.14.0",
  33. "benchmark": "^2.1.0",
  34. "browserify": "^16.2.3",
  35. "coveralls": "^3.0.2",
  36. "eslint": "^7.0.0",
  37. "gh-pages": "^2.2.0",
  38. "mdurl": "^1.0.0",
  39. "mocha": "^7.1.2",
  40. "ndoc": "^5.0.1",
  41. "nyc": "^15.0.1",
  42. "pug-cli": "^1.0.0-alpha6",
  43. "shelljs": "^0.8.4",
  44. "shx": "^0.3.2",
  45. "stylus": "~0.54.5",
  46. "tlds": "^1.166.0"
  47. }
  48. }