package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "fraction.js",
  3. "title": "fraction.js",
  4. "version": "4.2.0",
  5. "homepage": "https://www.xarg.org/2014/03/rational-numbers-in-javascript/",
  6. "bugs": "https://github.com/infusion/Fraction.js/issues",
  7. "description": "A rational number library",
  8. "keywords": [
  9. "math",
  10. "fraction",
  11. "rational",
  12. "rationals",
  13. "number",
  14. "parser",
  15. "rational numbers"
  16. ],
  17. "author": "Robert Eisele <robert@xarg.org> (http://www.xarg.org/)",
  18. "main": "fraction",
  19. "types": "./fraction.d.ts",
  20. "private": false,
  21. "readmeFilename": "README.md",
  22. "directories": {
  23. "example": "examples"
  24. },
  25. "license": "MIT",
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/infusion/Fraction.js.git"
  29. },
  30. "funding": {
  31. "type": "patreon",
  32. "url": "https://www.patreon.com/infusion"
  33. },
  34. "engines": {
  35. "node": "*"
  36. },
  37. "scripts": {
  38. "test": "mocha tests/*.js"
  39. },
  40. "devDependencies": {
  41. "mocha": "*"
  42. }
  43. }