{
  "name": "metric-parser",
  "version": "0.0.12",
  "description": "AST-based advanced mathematical parser written by Typescript.",
  "main": "dist/metric.parser.umd.js",
  "module": "dist/metric.parser.es5.js",
  "typings": "dist/types/metric.parser.d.ts",
  "scripts": {
    "lint": "tslint -t codeFrame 'src/**/*.ts'",
    "build": "tsc --module commonjs && rollup -c rollup.config.ts",
    "typedoc": "typedoc --out docs --target es6 --theme minimal --mode file src --exclude **/*.spec.ts",
    "test": "nyc mocha"
  },
  "files": [
    "dist"
  ],
  "nyc": {
    "all": true,
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "includes": [
      "src/**/!(*.spec).ts"
    ],
    "exclude": [
      "**/*.spec.ts",
      "**/*.interface.ts",
      "**/*.d.ts",
      "rollup.config.ts",
      "coverage",
      "docs/",
      "dist/",
      "demo/"
    ],
    "reporter": [
      "lcov",
      "json"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/KennethanCeyer/metric-parser.git"
  },
  "keywords": [
    "formula",
    "metric",
    "parser",
    "ast",
    "typescript",
    "validator"
  ],
  "author": "PIGNOSE",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/KennethanCeyer/metric-parser/issues"
  },
  "homepage": "https://github.com/KennethanCeyer/metric-parser#readme",
  "devDependencies": {
    "@types/chai": "^4.1.4",
    "@types/mocha": "^5.2.2",
    "chai": "^4.1.2",
    "coveralls": "^3.0.1",
    "lodash.camelcase": "^4.3.0",
    "mocha": "^5.2.0",
    "nyc": "^12.0.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.60.7",
    "rollup-plugin-commonjs": "^9.1.3",
    "rollup-plugin-json": "^3.0.0",
    "rollup-plugin-node-resolve": "^3.3.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-typescript2": "^0.15.0",
    "source-map-support": "^0.5.6",
    "ts-lint": "^4.5.1",
    "ts-loader": "^4.4.1",
    "ts-node": "^6.1.1",
    "tslint": "^5.10.0",
    "tslint-config-airbnb": "^5.9.2",
    "typedoc": "^0.11.1",
    "typescript": "^2.9.2",
    "webpack": "^4.12.0"
  }
}
