package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "_from": "html-escaper@^2.0.0",
  3. "_id": "html-escaper@2.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
  6. "_location": "/html-escaper",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "html-escaper@^2.0.0",
  12. "name": "html-escaper",
  13. "escapedName": "html-escaper",
  14. "rawSpec": "^2.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.0"
  17. },
  18. "_requiredBy": [
  19. "/istanbul-reports"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
  22. "_shasum": "dfd60027da36a36dfcbe236262c00a5822681453",
  23. "_spec": "html-escaper@^2.0.0",
  24. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\istanbul-reports",
  25. "author": {
  26. "name": "Andrea Giammarchi"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/WebReflection/html-escaper/issues"
  30. },
  31. "bundleDependencies": false,
  32. "deprecated": false,
  33. "description": "fast and safe way to escape and unescape &<>'\" chars",
  34. "devDependencies": {
  35. "ascjs": "^3.1.2",
  36. "coveralls": "^3.0.11",
  37. "istanbul": "^0.4.5",
  38. "rollup": "^2.1.0",
  39. "uglify-js": "^3.8.0"
  40. },
  41. "homepage": "https://github.com/WebReflection/html-escaper",
  42. "keywords": [
  43. "html",
  44. "escape",
  45. "encode",
  46. "unescape",
  47. "decode",
  48. "entities"
  49. ],
  50. "license": "MIT",
  51. "main": "./cjs/index.js",
  52. "module": "./esm/index.js",
  53. "name": "html-escaper",
  54. "repository": {
  55. "type": "git",
  56. "url": "git+https://github.com/WebReflection/html-escaper.git"
  57. },
  58. "scripts": {
  59. "build": "npm run cjs && npm run rollup && npm run minify && npm test && npm run size",
  60. "cjs": "ascjs esm cjs",
  61. "coveralls": "cat ./coverage/lcov.info | coveralls",
  62. "minify": "uglifyjs index.js --comments=/^!/ --compress --mangle -o min.js",
  63. "rollup": "rollup --config rollup.config.js",
  64. "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c",
  65. "test": "istanbul cover ./test/index.js"
  66. },
  67. "unpkg": "min.js",
  68. "version": "2.0.2"
  69. }