{
  "name": "callbag-state",
  "version": "0.2.5",
  "description": "Callbag-based State Management",
  "main": "dist/es5/index.js",
  "module": "dist/es6/index.js",
  "types": "dist/es6/index.d.ts",
  "scripts": {
    "start": "ts-node samples",
    "inspect": "node -r ts-node/register --inspect samples",
    "web": "webpack serve --config ./conf/webpack/dev.conf.ts",
    "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:gen": "nyc npm run test",
    "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"
  },
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/loreanvictor/callbag-state.git"
  },
  "keywords": [
    "callbag",
    "state management",
    "reactive",
    "programming"
  ],
  "files": [
    "dist/es6",
    "dist/es5",
    "dist/bundles"
  ],
  "author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/loreanvictor/callbag-state/issues"
  },
  "homepage": "https://github.com/loreanvictor/callbag-state#readme",
  "devDependencies": {
    "@babel/core": "^7.12.1",
    "@babel/preset-env": "^7.12.1",
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@rollup/plugin-babel": "^5.2.1",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/chai": "^4.2.13",
    "@types/lodash": "^4.14.162",
    "@types/mocha": "^8.0.3",
    "@types/node": "^14.11.8",
    "@types/webpack": "^4.41.24",
    "@types/estree": "^0.0.45",
    "callbag-behavior-subject": "^1.2.0",
    "callbag-interval": "^1.1.0",
    "callbag-map": "^1.1.0",
    "callbag-of": "^2.0.0",
    "callbag-pipe": "^1.2.0",
    "callbag-share": "^1.2.0",
    "callbag-subject": "^1.0.2",
    "callbag-subscribe": "^1.5.1",
    "chai": "^4.2.0",
    "html-webpack-plugin": "^4.5.0",
    "lodash": "^4.17.20",
    "mocha": "^8.1.3",
    "nyc": "^15.1.0",
    "rollup": "^2.31.0",
    "rollup-plugin-terser": "^7.0.2",
    "ts-loader": "^8.0.5",
    "ts-node": "^9.0.0",
    "tslib": "^2.0.3",
    "tslint": "^6.1.3",
    "typescript": "^4.0.3",
    "webpack": "^5.3.2",
    "webpack-cli": "^4.1.0",
    "webpack-dev-server": "^3.11.0",
    "webpack-merge": "^5.3.0"
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "src/**/test/*",
      "src/types/*"
    ],
    "reporter": [
      "text",
      "lcov"
    ]
  },
  "dependencies": {
    "callbag": "^1.3.0"
  }
}
