package.json 1008 B

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