package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "_from": "entities@^2.0.0",
  3. "_id": "entities@2.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
  6. "_location": "/entities",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "entities@^2.0.0",
  12. "name": "entities",
  13. "escapedName": "entities",
  14. "rawSpec": "^2.0.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.0"
  17. },
  18. "_requiredBy": [
  19. "/dom-serializer",
  20. "/htmlparser2"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
  23. "_shasum": "098dc90ebb83d8dffa089d55256b351d34c4da55",
  24. "_spec": "entities@^2.0.0",
  25. "_where": "D:\\Code\\ThreeJSProjects\\Journey\\node_modules\\dom-serializer",
  26. "author": {
  27. "name": "Felix Boehm",
  28. "email": "me@feedic.com"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/fb55/entities/issues"
  32. },
  33. "bundleDependencies": false,
  34. "deprecated": false,
  35. "description": "Encode & decode XML and HTML entities with ease",
  36. "devDependencies": {
  37. "@types/jest": "^26.0.0",
  38. "@types/node": "^14.11.8",
  39. "@typescript-eslint/eslint-plugin": "^4.4.1",
  40. "@typescript-eslint/parser": "^4.4.1",
  41. "coveralls": "*",
  42. "eslint": "^7.11.0",
  43. "eslint-config-prettier": "^7.0.0",
  44. "eslint-plugin-node": "^11.1.0",
  45. "jest": "^26.5.3",
  46. "prettier": "^2.0.5",
  47. "ts-jest": "^26.1.0",
  48. "typescript": "^4.0.2"
  49. },
  50. "directories": {
  51. "lib": "lib/"
  52. },
  53. "files": [
  54. "lib/**/*"
  55. ],
  56. "funding": "https://github.com/fb55/entities?sponsor=1",
  57. "homepage": "https://github.com/fb55/entities#readme",
  58. "jest": {
  59. "preset": "ts-jest",
  60. "testEnvironment": "node"
  61. },
  62. "keywords": [
  63. "entity",
  64. "decoding",
  65. "encoding",
  66. "html",
  67. "xml",
  68. "html entities"
  69. ],
  70. "license": "BSD-2-Clause",
  71. "main": "lib/index.js",
  72. "name": "entities",
  73. "prettier": {
  74. "tabWidth": 4,
  75. "proseWrap": "always"
  76. },
  77. "repository": {
  78. "type": "git",
  79. "url": "git://github.com/fb55/entities.git"
  80. },
  81. "scripts": {
  82. "build": "tsc && cp -r src/maps lib",
  83. "coverage": "cat coverage/lcov.info | coveralls",
  84. "format": "npm run format:es && npm run format:prettier",
  85. "format:es": "npm run lint:es -- --fix",
  86. "format:prettier": "npm run prettier -- --write",
  87. "lint": "npm run lint:es && npm run lint:prettier",
  88. "lint:es": "eslint .",
  89. "lint:prettier": "npm run prettier -- --check",
  90. "prepare": "npm run build",
  91. "prettier": "prettier '**/*.{ts,md,json,yml}'",
  92. "test": "jest --coverage && npm run lint"
  93. },
  94. "sideEffects": false,
  95. "types": "lib/index.d.ts",
  96. "version": "2.2.0"
  97. }