{
  "name": "fcal",
  "version": "0.4.3",
  "description": "Math expression evaluator",
  "main": "lib/fcal.js",
  "types": "lib/fcal.d.ts",
  "scripts": {
    "test": "jest --config jestconfig.json",
    "build": "rm -rf lib && tsc",
    "browser": "tsc --target es5 --outDir es5 && browserify es5/fcal.js --standalone fcal -o  dist/fcal.js -p common-shakeify  -p bundle-collapser/plugin && uglifyjs --compress --mangle -- dist/fcal.js > dist/fcal.min.js && rm -rf es5",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "tslint -p tsconfig.json",
    "prepare": "npm run build && npm run browser",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/5anthosh/fcal.git"
  },
  "author": "Santhosh Kumar",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/5anthosh/fcal/issues"
  },
  "homepage": "https://github.com/5anthosh/fcal#readme",
  "devDependencies": {
    "@types/jest": "^25.1.1",
    "@types/node": "^13.7.0",
    "browserify": "^16.5.0",
    "bundle-collapser": "^1.3.0",
    "common-shakeify": "^0.6.2",
    "jest": "^25.1.0",
    "prettier": "^1.19.1",
    "ts-jest": "^25.2.0",
    "tslint": "^6.0.0",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.7.5",
    "uglify-js": "^3.7.7"
  },
  "files": [
    "lib/**/*",
    "dist/**/*"
  ],
  "dependencies": {
    "decimal.js": "^10.2.0",
    "toformat": "^2.0.0"
  },
  "keywords": [
    "formula",
    "interpreter",
    "math",
    "expression"
  ]
}