package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "iconv-lite",
  3. "description": "Convert character encodings in pure javascript.",
  4. "version": "0.4.24",
  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": "istanbul cover _mocha -- --grep .",
  26. "coverage-open": "open coverage/lcov-report/index.html",
  27. "test": "mocha --reporter spec --grep ."
  28. },
  29. "browser": {
  30. "./lib/extend-node": false,
  31. "./lib/streams": false
  32. },
  33. "devDependencies": {
  34. "mocha": "^3.1.0",
  35. "request": "~2.87.0",
  36. "unorm": "*",
  37. "errto": "*",
  38. "async": "*",
  39. "istanbul": "*",
  40. "semver": "*",
  41. "iconv": "*"
  42. },
  43. "dependencies": {
  44. "safer-buffer": ">= 2.1.2 < 3"
  45. }
  46. }