4
1

package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "iconv-lite",
  3. "description": "Convert character encodings in pure javascript.",
  4. "version": "0.6.3",
  5. "license": "MIT",
  6. "keywords": [
  7. "iconv",
  8. "convert",
  9. "charset",
  10. "icu"
  11. ],
  12. "author": "Alexander Shtuchkin <[email protected]>",
  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. "stream": false
  30. },
  31. "devDependencies": {
  32. "async": "^3.2.0",
  33. "c8": "^7.2.0",
  34. "errto": "^0.2.1",
  35. "iconv": "^2.3.5",
  36. "mocha": "^3.5.3",
  37. "request": "^2.88.2",
  38. "semver": "^6.3.0",
  39. "unorm": "^1.6.0"
  40. },
  41. "dependencies": {
  42. "safer-buffer": ">= 2.1.2 < 3.0.0"
  43. }
  44. }