package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "printj",
  3. "version": "1.1.2",
  4. "author": "sheetjs",
  5. "description": "Pure-JS printf",
  6. "keywords": [
  7. "printf",
  8. "sprintf",
  9. "format",
  10. "string"
  11. ],
  12. "bin": {
  13. "printj": "./bin/printj.njs"
  14. },
  15. "main": "./printj",
  16. "types": "types",
  17. "browser": {
  18. "process": false,
  19. "util": false
  20. },
  21. "dependencies": {
  22. },
  23. "devDependencies": {
  24. "mocha": "~2.5.3",
  25. "blanket": "~1.2.3",
  26. "@sheetjs/uglify-js": "~2.7.3",
  27. "@types/node": "^8.0.7",
  28. "dtslint": "^0.1.2",
  29. "typescript": "2.2.0"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/SheetJS/printj.git"
  34. },
  35. "scripts": {
  36. "test": "make test",
  37. "build": "make",
  38. "lint": "make fullint",
  39. "dtslint": "dtslint types"
  40. },
  41. "config": {
  42. "blanket": {
  43. "pattern": "printj.js"
  44. }
  45. },
  46. "alex": {
  47. "allow": [
  48. "period"
  49. ]
  50. },
  51. "homepage": "http://sheetjs.com/opensource",
  52. "files": ["printj.js", "bin/printj.njs", "LICENSE", "README.md", "dist/*.js", "dist/*.map", "dist/LICENSE", "types/index.d.ts", "types/*.json"],
  53. "bugs": {
  54. "url": "https://github.com/SheetJS/printj/issues"
  55. },
  56. "license": "Apache-2.0",
  57. "engines": {
  58. "node": ">=0.8"
  59. }
  60. }