package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "iconv-lite",
  3. "description": "Convert character encodings in pure javascript.",
  4. "version": "0.7.0",
  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:webpack": "npm pack && mv iconv-lite-*.tgz test/webpack/iconv-lite.tgz && cd test/webpack && npm install && npm run test && rm iconv-lite.tgz"
  37. },
  38. "browser": {
  39. "stream": false
  40. },
  41. "devDependencies": {
  42. "@stylistic/eslint-plugin": "^5.1.0",
  43. "@stylistic/eslint-plugin-js": "^4.1.0",
  44. "async": "^3.2.0",
  45. "bench-node": "^0.10.0",
  46. "eslint": "^9.0.0",
  47. "errto": "^0.2.1",
  48. "iconv": "^2.3.5",
  49. "mocha": "^6.2.2",
  50. "neostandard": "^0.12.0",
  51. "nyc": "^14.1.1",
  52. "request": "^2.88.2",
  53. "semver": "^6.3.0",
  54. "unorm": "^1.6.0"
  55. },
  56. "dependencies": {
  57. "safer-buffer": ">= 2.1.2 < 3.0.0"
  58. }
  59. }