智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "autolinker",
  3. "version": "4.1.5",
  4. "description": "Utility to automatically link the URLs, email addresses, phone numbers, hashtags, and mentions (Twitter, Instagram) in a given block of text/HTML",
  5. "main": "./dist/commonjs/index.js",
  6. "typings": "./dist/commonjs/index.d.ts",
  7. "module": "./dist/es2015/index.js",
  8. "files": [
  9. "dist"
  10. ],
  11. "scripts": {
  12. "benchmarks": "ts-node benchmarks/benchmarks.ts",
  13. "build": "npm-run-all clean update-known-tlds generate-char-utils build:src",
  14. "build:docs": "npm-run-all build:docs-site build:live-example",
  15. "build:docs-site": "ts-node scripts/build-docs.ts",
  16. "build:src": "ts-node scripts/build.ts",
  17. "build:live-example": "webpack",
  18. "clean": "rimraf dist",
  19. "coverage": "nyc npm run test:unit -- --forbid-only",
  20. "devserver": "webpack-dev-server",
  21. "generate-char-utils": "ts-node scripts/generate-char-utils.ts",
  22. "lint": "eslint src tests scripts",
  23. "lint:fix": "npm run lint -- --fix",
  24. "prepublishOnly": "npm-run-all build test",
  25. "profile": "node --inspect --require ts-node/register benchmarks/profile.ts",
  26. "start": "webpack serve --open",
  27. "test": "npm-run-all test:unit test:integration",
  28. "test:ci": "npm-run-all coverage test:integration",
  29. "test:unit": "mocha --require=ts-node/register \"tests/**/*.spec.ts\"",
  30. "test:unit:debug": "mocha --inspect-brk --require=ts-node/register \"tests/**/*.spec.ts\"",
  31. "test:integration": "ts-node scripts/test-integration.ts",
  32. "update-known-tlds": "ts-node scripts/update-known-tlds.ts",
  33. "prepare": "husky install"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "git://github.com/gregjacobs/Autolinker.js.git"
  38. },
  39. "engines": {
  40. "pnpm": ">=10.10.0"
  41. },
  42. "keywords": [
  43. "auto",
  44. "link",
  45. "autolink",
  46. "url",
  47. "urls",
  48. "anchor"
  49. ],
  50. "author": "Gregory Jacobs <greg@greg-jacobs.com>",
  51. "license": "MIT",
  52. "bugs": {
  53. "url": "https://github.com/gregjacobs/Autolinker.js/issues"
  54. },
  55. "homepage": "https://github.com/gregjacobs/Autolinker.js",
  56. "dependencies": {
  57. "tslib": "^2.8.1"
  58. },
  59. "devDependencies": {
  60. "@eslint/js": "^9.25.1",
  61. "@istanbuljs/nyc-config-typescript": "^1.0.2",
  62. "@rollup/plugin-commonjs": "^28.0.2",
  63. "@rollup/plugin-node-resolve": "^16.0.0",
  64. "@rollup/plugin-typescript": "^12.1.2",
  65. "@types/chai": "^5.2.1",
  66. "@types/cli-table": "^0.3.4",
  67. "@types/dedent": "^0.7.2",
  68. "@types/fs-extra": "^11.0.4",
  69. "@types/jquery": "^3.5.32",
  70. "@types/lodash": "^4.17.13",
  71. "@types/mocha": "^10.0.10",
  72. "@types/node": "^22.10.2",
  73. "@types/sinon": "^17.0.4",
  74. "@types/webpack": "^5.28.5",
  75. "axios": "^1.7.9",
  76. "chai": "^5.2.0",
  77. "cli-table": "^0.3.11",
  78. "css-loader": "^7.1.2",
  79. "dedent": "^1.5.3",
  80. "eslint": "^9.25.1",
  81. "fast-glob": "^3.3.2",
  82. "fs-extra": "^11.2.0",
  83. "html-webpack-plugin": "^5.6.3",
  84. "husky": "^9.1.7",
  85. "jsduck": "^1.1.2",
  86. "lint-staged": "^15.2.11",
  87. "lodash": "^4.17.21",
  88. "mkdirp": "^3.0.1",
  89. "mocha": "^11.1.0",
  90. "npm": "^11.0.0",
  91. "npm-run-all": "^4.1.5",
  92. "nyc": "^17.1.0",
  93. "prettier": "3.4.2",
  94. "punycode": "^2.3.1",
  95. "puppeteer": "^24.7.2",
  96. "rimraf": "^6.0.1",
  97. "rollup": "^4.29.1",
  98. "sinon": "^20.0.0",
  99. "style-loader": "^4.0.0",
  100. "terser": "^5.37.0",
  101. "ts-loader": "^9.5.1",
  102. "ts-node": "^10.9.2",
  103. "typescript": "^5.8.3",
  104. "typescript-eslint": "^8.31.0",
  105. "webpack": "^5.97.1",
  106. "webpack-cli": "^6.0.1",
  107. "webpack-dev-server": "^5.2.0"
  108. }
  109. }