package.json 945 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "frac",
  3. "version": "1.1.2",
  4. "author": "SheetJS",
  5. "description": "Rational approximation with bounded denominator",
  6. "keywords": [ "math", "fraction", "rational", "approximation" ],
  7. "main": "./frac",
  8. "types": "types",
  9. "dependencies": {},
  10. "devDependencies": {
  11. "voc": "~1.1.0",
  12. "mocha": "~2.5.3",
  13. "blanket": "~1.2.3",
  14. "codepage": "~1.10.0",
  15. "@sheetjs/uglify-js": "~2.7.3",
  16. "@types/node": "^8.0.7",
  17. "dtslint": "^0.1.2",
  18. "typescript": "2.2.0"
  19. },
  20. "repository": { "type":"git", "url":"git://github.com/SheetJS/frac.git" },
  21. "scripts": {
  22. "test": "make test",
  23. "build": "make",
  24. "lint": "make fullint",
  25. "dtslint": "dtslint types"
  26. },
  27. "config": {
  28. "blanket": {
  29. "pattern": "frac.js"
  30. }
  31. },
  32. "homepage": "http://sheetjs.com/opensource",
  33. "bugs": { "url": "https://github.com/SheetJS/frac/issues" },
  34. "license": "Apache-2.0",
  35. "engines": { "node": ">=0.8" }
  36. }