{
  "name": "fraction-parser",
  "version": "1.0.6",
  "description": "Simple library to parse decimals into fractions / unicode vulgar fractions and vice-versa",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/moa-os/fraction-parser.git"
  },
  "author": {
    "name": "Mohamed Omar",
    "email": "moha.os@hotmail.com"
  },
  "license": "MIT",
  "private": false,
  "scripts": {
    "test": "jest --config jestconfig.json",
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "tslint -p tsconfig.json",
    "prepare": "yarn build",
    "prepublishOnly": "yarn test && yarn lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "bugs": {
    "url": "https://github.com/moa-os/fraction-parser/issues"
  },
  "homepage": "moaomar.dev",
  "files": [
    "lib/**/*"
  ],
  "keywords": [
    "fraction",
    "unicode",
    "vulgar",
    "fractional",
    "parser",
    "math",
    "decimal",
    "number"
  ],
  "devDependencies": {
    "@types/jest": "^29.2.6",
    "jest": "^29.3.1",
    "prettier": "^2.8.3",
    "ts-jest": "^29.0.5",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.9.4"
  }
}
