package.json 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "ssf",
  3. "version": "0.11.2",
  4. "author": "sheetjs",
  5. "description": "Format data using ECMA-376 spreadsheet Format Codes",
  6. "keywords": [
  7. "format",
  8. "sprintf",
  9. "spreadsheet"
  10. ],
  11. "main": "./ssf",
  12. "types": "types",
  13. "dependencies": {
  14. "frac":"~1.1.2"
  15. },
  16. "devDependencies": {
  17. "@sheetjs/uglify-js":"~2.7.3",
  18. "@types/node":"^8.0.7",
  19. "blanket": "~1.2.3",
  20. "dtslint": "^0.1.2",
  21. "mocha": "~2.5.3",
  22. "typescript": "2.2.0"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/SheetJS/ssf.git"
  27. },
  28. "scripts": {
  29. "test": "make test",
  30. "build": "make",
  31. "lint": "make fullint",
  32. "dtslint": "dtslint types"
  33. },
  34. "config": {
  35. "blanket": {
  36. "pattern": "ssf.js"
  37. }
  38. },
  39. "alex": {
  40. "allow": [
  41. "special",
  42. "simple",
  43. "just",
  44. "crash",
  45. "wtf",
  46. "holes"
  47. ]
  48. },
  49. "homepage": "http://sheetjs.com/",
  50. "bugs": {
  51. "url": "https://github.com/SheetJS/ssf/issues"
  52. },
  53. "license": "Apache-2.0",
  54. "engines": {
  55. "node": ">=0.8"
  56. }
  57. }