package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "linkify-it",
  3. "version": "4.0.1",
  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 --reporter=lcov mocha",
  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": "^1.0.0",
  33. "benchmark": "^2.1.0",
  34. "browserify": "^17.0.0",
  35. "eslint": "^7.0.0",
  36. "gh-pages": "^3.2.3",
  37. "mdurl": "^1.0.0",
  38. "mocha": "^9.1.2",
  39. "ndoc": "^6.0.0",
  40. "nyc": "^15.0.1",
  41. "pug-cli": "^1.0.0-alpha6",
  42. "shelljs": "^0.8.4",
  43. "shx": "^0.3.2",
  44. "stylus": "~0.55.0",
  45. "tlds": "^1.166.0"
  46. }
  47. }