package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "codepage",
  3. "version": "1.15.0",
  4. "author": "SheetJS",
  5. "description": "pure-JS library to handle codepages",
  6. "keywords": [
  7. "codepage",
  8. "iconv",
  9. "convert",
  10. "strings"
  11. ],
  12. "main": "cputils.js",
  13. "types": "types",
  14. "browser": {
  15. "buffer": "false"
  16. },
  17. "devDependencies": {
  18. "voc": "~1.1.0",
  19. "mocha": "~2.5.3",
  20. "blanket": "~1.2.3",
  21. "@sheetjs/uglify-js": "~2.7.3",
  22. "@types/node": "^8.0.7",
  23. "@types/commander": "^2.12.0",
  24. "dtslint": "^0.1.2",
  25. "typescript": "2.2.0"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/SheetJS/js-codepage.git"
  30. },
  31. "scripts": {
  32. "pretest": "git submodule init && git submodule update",
  33. "test": "make test",
  34. "build": "make js",
  35. "lint": "make fullint",
  36. "dtslint": "dtslint types"
  37. },
  38. "config": {
  39. "blanket": {
  40. "pattern": "[cputils.js]"
  41. }
  42. },
  43. "alex": {
  44. "allow": [
  45. "chinese",
  46. "european",
  47. "german",
  48. "japanese",
  49. "latin"
  50. ]
  51. },
  52. "homepage": "https://sheetjs.com/",
  53. "files": [
  54. "LICENSE",
  55. "README.md",
  56. "bin",
  57. "bits/*.js",
  58. "types/index.d.ts",
  59. "types/*.json",
  60. "cptable.js",
  61. "cputils.js",
  62. "dist/sbcs.full.js",
  63. "dist/cpexcel.full.js"
  64. ],
  65. "bugs": {
  66. "url": "https://github.com/SheetJS/js-codepage/issues"
  67. },
  68. "license": "Apache-2.0",
  69. "engines": {
  70. "node": ">=0.8"
  71. }
  72. }