{
  "name": "trigonometry-equations",
  "version": "2.0.1",
  "description": "Trigonometry rules to solve equations for angles and sides",
  "main": "lib/index.js",
  "scripts": {
    "commitmsg": "validate-commit-msg",
    "commit": "git cz",
    "coveralls": "npm test && cat ./coverage/lcov.info | coveralls",
    "build": "babel src --out-dir lib",
    "build:srcmap": "npm run build -- --source-maps inline",
    "lint": "standard",
    "prepush": "npm test && npm run lint && npm run build",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "test": "npm run build:srcmap && jest"
  },
  "babel": {
    "plugins": [
      "transform-object-rest-spread"
    ],
    "presets": [
      "latest"
    ]
  },
  "files": [
    "lib"
  ],
  "standard": {
    "globals": [
      "describe",
      "expect",
      "it"
    ],
    "parser": "babel-eslint"
  },
  "jest": {
    "collectCoverage": true,
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/calvinmikael/trigonometry-equations.git"
  },
  "keywords": [
    "ambiguous",
    "ambiguous case",
    "angle",
    "calculator",
    "calculation",
    "calculus",
    "cosine",
    "equation",
    "math",
    "mathematics",
    "rule",
    "side",
    "sine",
    "solve",
    "solver",
    "triangle",
    "trigonometry"
  ],
  "author": "Calvin Mikael",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/calvinmikael/trigonometry-equations/issues"
  },
  "homepage": "https://github.com/calvinmikael/trigonometry-equations#readme",
  "devDependencies": {
    "babel-cli": "^6.14.0",
    "babel-eslint": "^7.0.0",
    "babel-plugin-transform-object-rest-spread": "^6.20.2",
    "babel-preset-latest": "^6.16.0",
    "babel-register": "^6.14.0",
    "commitizen": "^2.8.2",
    "coveralls": "^2.11.9",
    "cz-conventional-changelog": "^2.0.0",
    "husky": "^0.13.1",
    "jest": "^19.0.0",
    "jest-cli": "^19.0.0",
    "semantic-release": "^6.3.2",
    "standard": "^8.0.0",
    "validate-commit-msg": "^2.8.0"
  },
  "dependencies": {
    "degrees-radians": "^1.0.3",
    "radians-degrees": "^1.0.0"
  }
}