{
  "name": "rxmetics",
  "version": "0.2.1",
  "description": "Arithmetics for RxJS Observables",
  "main": "dist/es5/index.js",
  "module": "dist/es6/index.js",
  "types": "dist/es6/index.d.ts",
  "scripts": {
    "start": "ts-node samples",
    "test": "ts-node --project conf/typescript/test.json test.ts",
    "build": "tsc -p conf/typescript/es5.json && tsc -p conf/typescript/es6.json",
    "pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
    "cov:view": "nyc npm run test && npm run cov:clean",
    "cov:travis": "nyc npm run test && npx codecov",
    "cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage"
  },
  "files": [
    "dist/es6",
    "dist/es5",
    "dist/bundles",
    "pipes"
  ],
  "keywords": [
    "rxjs", "streams", "observables", "arithmetic", "numeric", "logic", "string templates"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/loreanvictor/rxmetics.git"
  },
  "author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/loreanvictor/rxmetics/issues"
  },
  "homepage": "https://loreanvictor.github.io/rxmetics",
  "dependencies": {
    "rxjs": "^6.5.5"
  },
  "devDependencies": {
    "@babel/core": "^7.9.6",
    "@babel/preset-env": "^7.9.6",
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/chai": "^4.2.11",
    "@types/mocha": "^7.0.2",
    "@types/node": "^13.13.4",
    "chai": "^4.2.0",
    "mocha": "^7.1.2",
    "nyc": "^15.0.1",
    "rollup": "^2.7.6",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-terser": "^5.3.0",
    "rollup-plugin-uglify": "^6.0.4",
    "ts-node": "^8.9.1",
    "tslib": "^1.11.1",
    "typescript": "^3.8.3"
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "include": ["src/**/*.ts"],
    "exclude": ["src/**/test/*"],
    "reporter": ["text", "lcov"]
  }
}
