package.json 1.5 KB

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