package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "cfb",
  3. "version": "1.2.2",
  4. "author": "sheetjs",
  5. "description": "Compound File Binary File Format extractor",
  6. "keywords": [
  7. "cfb",
  8. "compression",
  9. "office"
  10. ],
  11. "main": "./cfb",
  12. "types": "types",
  13. "browser": {
  14. "node": false,
  15. "process": false,
  16. "fs": false
  17. },
  18. "dependencies": {
  19. "adler-32": "~1.3.0",
  20. "crc-32": "~1.2.0"
  21. },
  22. "devDependencies": {
  23. "@sheetjs/uglify-js": "~2.7.3",
  24. "@types/node": "^8.10.25",
  25. "acorn": "7.4.1",
  26. "alex": "8.1.1",
  27. "blanket": "~1.2.3",
  28. "dtslint": "~0.1.2",
  29. "eslint": "7.23.0",
  30. "eslint-plugin-html": "^6.1.2",
  31. "eslint-plugin-json": "^2.1.2",
  32. "jscs": "3.0.7",
  33. "jshint": "2.13.4",
  34. "mocha": "~2.5.3",
  35. "typescript": "2.2.0"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "git://github.com/SheetJS/js-cfb.git"
  40. },
  41. "scripts": {
  42. "pretest": "make init",
  43. "test": "make test",
  44. "dtslint": "dtslint types"
  45. },
  46. "config": {
  47. "blanket": {
  48. "pattern": "cfb.js"
  49. }
  50. },
  51. "files": [
  52. "LICENSE",
  53. "README.md",
  54. "dist/",
  55. "types/index.d.ts",
  56. "types/tsconfig.json",
  57. "cfb.js",
  58. "xlscfb.flow.js"
  59. ],
  60. "homepage": "http://sheetjs.com/",
  61. "bugs": {
  62. "url": "https://github.com/SheetJS/js-cfb/issues"
  63. },
  64. "license": "Apache-2.0",
  65. "engines": {
  66. "node": ">=0.8"
  67. }
  68. }