package.json 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "codepage",
  3. "version": "1.3.8",
  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. "files": [
  11. "LICENSE",
  12. "README.md",
  13. "bin",
  14. "cptable.js",
  15. "cputils.js",
  16. "dist/cpexcel.full.js"
  17. ],
  18. "main": "cputils.js",
  19. "dependencies": {
  20. "voc":"",
  21. "concat-stream":"",
  22. "commander":""
  23. },
  24. "devDependencies": {
  25. "mocha":""
  26. },
  27. "repository": { "type":"git", "url":"git://github.com/SheetJS/js-codepage.git"},
  28. "scripts": {
  29. "pretest": "git submodule init && git submodule update",
  30. "test": "make test",
  31. "build": "make js"
  32. },
  33. "config": {
  34. "blanket": {
  35. "pattern": "[cptable.js,cputils.js,cpexcel.js]"
  36. }
  37. },
  38. "bugs": { "url": "https://github.com/SheetJS/js-codepage/issues" },
  39. "license": "Apache-2.0",
  40. "engines": { "node": ">=0.8" }
  41. }