package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "iconv-lite",
  3. "description": "Convert character encodings in pure javascript.",
  4. "version": "0.5.2",
  5. "license": "MIT",
  6. "keywords": [
  7. "iconv",
  8. "convert",
  9. "charset",
  10. "icu"
  11. ],
  12. "author": "Alexander Shtuchkin <ashtuchkin@gmail.com>",
  13. "main": "./lib/index.js",
  14. "typings": "./lib/index.d.ts",
  15. "homepage": "https://github.com/ashtuchkin/iconv-lite",
  16. "bugs": "https://github.com/ashtuchkin/iconv-lite/issues",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/ashtuchkin/iconv-lite.git"
  20. },
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "coverage": "c8 _mocha --grep .",
  26. "test": "mocha --reporter spec --grep ."
  27. },
  28. "browser": {
  29. "./lib/extend-node": false,
  30. "./lib/streams": false
  31. },
  32. "devDependencies": {
  33. "mocha": "^3.1.0",
  34. "request": "~2.87.0",
  35. "unorm": "*",
  36. "errto": "*",
  37. "async": "*",
  38. "c8": "*",
  39. "semver": "6.1.2",
  40. "iconv": "2"
  41. },
  42. "dependencies": {
  43. "safer-buffer": ">= 2.1.2 < 3"
  44. }
  45. }