package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "iconv-lite",
  3. "description": "Convert character encodings in pure javascript.",
  4. "version": "0.7.1",
  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/pillarjs/iconv-lite",
  16. "bugs": "https://github.com/pillarjs/iconv-lite/issues",
  17. "funding": {
  18. "type": "opencollective",
  19. "url": "https://opencollective.com/express"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/pillarjs/iconv-lite.git"
  24. },
  25. "engines": {
  26. "node": ">=0.10.0"
  27. },
  28. "scripts": {
  29. "lint": "eslint",
  30. "lint:fix": "eslint --fix",
  31. "test": "mocha --reporter spec --check-leaks --grep .",
  32. "test:ci": "nyc --exclude test --reporter=lcovonly --reporter=text npm test",
  33. "test:cov": "nyc --exclude test --reporter=html --reporter=text npm test",
  34. "test:performance": "node --allow-natives-syntax performance/index.js",
  35. "test:tap": "mocha --reporter tap --check-leaks --grep .",
  36. "test:typescript": "tsc && attw --pack",
  37. "test:webpack": "npm pack && mv iconv-lite-*.tgz test/webpack/iconv-lite.tgz && cd test/webpack && npm install && npm run test && rm iconv-lite.tgz",
  38. "typegen": "node generation/gen-typings.js"
  39. },
  40. "browser": {
  41. "stream": false
  42. },
  43. "devDependencies": {
  44. "@arethetypeswrong/cli": "^0.17.4",
  45. "@stylistic/eslint-plugin": "^5.1.0",
  46. "@stylistic/eslint-plugin-js": "^4.1.0",
  47. "@types/node": "^24.0.12",
  48. "async": "^3.2.0",
  49. "bench-node": "^0.10.0",
  50. "eslint": "^9.0.0",
  51. "errto": "^0.2.1",
  52. "expect-type": "^1.2.0",
  53. "iconv": "^2.3.5",
  54. "mocha": "^6.2.2",
  55. "neostandard": "^0.12.0",
  56. "nyc": "^14.1.1",
  57. "request": "^2.88.2",
  58. "semver": "^6.3.0",
  59. "typescript": "~5.9.2",
  60. "unorm": "^1.6.0"
  61. },
  62. "dependencies": {
  63. "safer-buffer": ">= 2.1.2 < 3.0.0"
  64. }
  65. }