package.json 692 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "ssf",
  3. "version": "0.8.2",
  4. "author": "SheetJS",
  5. "description": "Format data using ECMA-376 spreadsheet Format Codes",
  6. "keywords": [ "format", "sprintf", "spreadsheet" ],
  7. "bin": {
  8. "ssf": "./bin/ssf.njs"
  9. },
  10. "main": "ssf.js",
  11. "dependencies": {
  12. "voc":"",
  13. "colors":"0.6.2",
  14. "frac":"0.3.1"
  15. },
  16. "devDependencies": {
  17. "mocha":""
  18. },
  19. "repository": { "type":"git", "url":"git://github.com/SheetJS/ssf.git" },
  20. "scripts": {
  21. "test": "mocha -R spec"
  22. },
  23. "config": {
  24. "blanket": {
  25. "pattern": "ssf.js"
  26. }
  27. },
  28. "bugs": { "url": "https://github.com/SheetJS/ssf/issues" },
  29. "license": "Apache-2.0",
  30. "engines": { "node": ">=0.8" }
  31. }