package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "html-entities",
  3. "version": "1.4.0",
  4. "description": "Faster HTML entities encode/decode library.",
  5. "keywords": [
  6. "html",
  7. "html entities",
  8. "html entities encode",
  9. "html entities decode",
  10. "entities",
  11. "entities encode",
  12. "entities decode"
  13. ],
  14. "author": {
  15. "name": "Marat Dulin",
  16. "email": "mdevils@yandex.ru"
  17. },
  18. "dependencies": {},
  19. "devDependencies": {
  20. "@types/benchmark": "^2.1.0",
  21. "@types/chai": "^4.2.11",
  22. "@types/mocha": "^7.0.2",
  23. "@types/node": "^13.13.4",
  24. "benchmark": "^2.1.4",
  25. "chai": "^4.2.0",
  26. "coveralls": "^3.1.0",
  27. "entities": "^2.0.0",
  28. "mocha": "^7.1.2",
  29. "node-html-encoder": "^0.0.2",
  30. "ts-node": "^8.9.1",
  31. "typescript": "^3.8.3"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/mdevils/node-html-entities.git"
  36. },
  37. "main": "./lib/index.js",
  38. "typings": "./lib/index.d.ts",
  39. "types": "./lib/index.d.ts",
  40. "scripts": {
  41. "test": "mocha --recursive -r ts-node/register test/**/*.ts",
  42. "benchmark": "ts-node benchmark/benchmark",
  43. "travis": "yarn test",
  44. "build": "tsc",
  45. "prepublishOnly": "yarn build"
  46. },
  47. "files": [
  48. "index.js",
  49. "lib",
  50. "LICENSE"
  51. ],
  52. "license": "MIT"
  53. }