package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "xlsx",
  3. "version": "0.18.5",
  4. "author": "sheetjs",
  5. "description": "SheetJS Spreadsheet data parser and writer",
  6. "keywords": [
  7. "excel",
  8. "xls",
  9. "xlsx",
  10. "xlsb",
  11. "xlsm",
  12. "ods",
  13. "csv",
  14. "dbf",
  15. "dif",
  16. "sylk",
  17. "office",
  18. "spreadsheet"
  19. ],
  20. "bin": {
  21. "xlsx": "./bin/xlsx.njs"
  22. },
  23. "main": "xlsx.js",
  24. "module": "xlsx.mjs",
  25. "unpkg": "dist/xlsx.full.min.js",
  26. "jsdelivr": "dist/xlsx.full.min.js",
  27. "types": "types/index.d.ts",
  28. "browser": {
  29. "buffer": false,
  30. "crypto": false,
  31. "stream": false,
  32. "process": false,
  33. "fs": false
  34. },
  35. "sideEffects": false,
  36. "dependencies": {
  37. "adler-32": "~1.3.0",
  38. "cfb": "~1.2.1",
  39. "codepage": "~1.15.0",
  40. "crc-32": "~1.2.1",
  41. "ssf": "~0.11.2",
  42. "wmf": "~1.0.1",
  43. "word": "~0.3.0"
  44. },
  45. "devDependencies": {
  46. "@sheetjs/uglify-js": "~2.7.3",
  47. "@types/node": "^8.5.9",
  48. "acorn": "7.4.1",
  49. "alex": "8.1.1",
  50. "blanket": "~1.2.3",
  51. "commander": "~2.17.1",
  52. "dtslint": "^0.1.2",
  53. "eslint": "7.23.0",
  54. "eslint-plugin-html": "^6.1.2",
  55. "eslint-plugin-json": "^2.1.2",
  56. "exit-on-epipe": "~1.0.1",
  57. "fflate": "^0.7.1",
  58. "jsdom": "~11.1.0",
  59. "markdown-spellcheck": "^1.3.1",
  60. "mocha": "~2.5.3",
  61. "sinon": "^1.17.7",
  62. "typescript": "2.2.0"
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "git://github.com/SheetJS/sheetjs.git"
  67. },
  68. "scripts": {
  69. "pretest": "npm run lint",
  70. "test": "npm run tests-only",
  71. "pretest-only": "git submodule init && git submodule update",
  72. "tests-only": "make travis",
  73. "build": "make",
  74. "lint": "make fullint",
  75. "dtslint": "dtslint types"
  76. },
  77. "config": {
  78. "blanket": {
  79. "pattern": "xlsx.js"
  80. }
  81. },
  82. "alex": {
  83. "allow": [
  84. "chinese",
  85. "special",
  86. "simple",
  87. "just",
  88. "crash",
  89. "wtf",
  90. "holes"
  91. ]
  92. },
  93. "homepage": "https://sheetjs.com/",
  94. "bugs": {
  95. "url": "https://github.com/SheetJS/sheetjs/issues"
  96. },
  97. "license": "Apache-2.0",
  98. "engines": {
  99. "node": ">=0.8"
  100. }
  101. }