package.json 1.3 KB

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