package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "xlsx",
  3. "version": "0.11.19",
  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",
  24. "types": "types",
  25. "browser": {
  26. "buffer": false,
  27. "crypto": false,
  28. "stream": false,
  29. "process": false,
  30. "fs": false
  31. },
  32. "dependencies": {
  33. "adler-32": "~1.2.0",
  34. "cfb": "~1.0.2",
  35. "codepage": "~1.12.0",
  36. "commander": "~2.13.0",
  37. "crc-32": "~1.2.0",
  38. "exit-on-epipe": "~1.0.1",
  39. "ssf": "~0.10.1"
  40. },
  41. "devDependencies": {
  42. "@sheetjs/uglify-js": "~2.7.3",
  43. "@types/node": "^8.5.9",
  44. "blanket": "~1.2.3",
  45. "dtslint": "^0.1.2",
  46. "jsdom": "~11.1.0",
  47. "mocha": "~2.5.3",
  48. "typescript": "2.2.0"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": "git://github.com/SheetJS/js-xlsx.git"
  53. },
  54. "scripts": {
  55. "pretest": "git submodule init && git submodule update",
  56. "test": "make travis",
  57. "build": "make",
  58. "lint": "make fullint",
  59. "dtslint": "dtslint types"
  60. },
  61. "config": {
  62. "blanket": {
  63. "pattern": "xlsx.js"
  64. }
  65. },
  66. "alex": {
  67. "allow": [
  68. "wtf",
  69. "holes"
  70. ]
  71. },
  72. "homepage": "http://sheetjs.com/opensource",
  73. "bugs": {
  74. "url": "https://github.com/SheetJS/js-xlsx/issues"
  75. },
  76. "license": "Apache-2.0",
  77. "engines": {
  78. "node": ">=0.8"
  79. }
  80. }