{
  "name": "callbag-jsx",
  "version": "0.1.13",
  "description": "callbags + JSX: super fast and super thiny interactive web apps",
  "main": "dist/es5/index.js",
  "module": "dist/es6/index.js",
  "types": "dist/es6/index.d.ts",
  "scripts": {
    "start": "webpack serve --config ./conf/webpack/dev.conf.ts",
    "watch": "webpack --config ./conf/webpack/dev.conf.ts --watch",
    "test": "ts-node --files --project conf/typescript/test.json test.ts",
    "build-bundle": "webpack --config ./conf/webpack/prod.conf.ts",
    "build-es5": "tsc -p conf/typescript/es5.json",
    "build-es6": "tsc -p conf/typescript/es6.json",
    "build": "npm run build-es5 && npm run build-es6",
    "pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
    "cov:inst": "nyc instrument --compact false src .instrumented",
    "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-jsx.git"
  },
  "files": [
    "dist/es6",
    "dist/es5",
    "dist/bundles",
    "plugins"
  ],
  "keywords": [
    "JSX",
    "callbags",
    "frontend",
    "web",
    "apps",
    "spa"
  ],
  "author": "Eugene Ghanizadeh Khoub <ghanizadeh.eugene@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/loreanvictor/callbag-jsx/issues"
  },
  "homepage": "https://loreanvictor.github.io/callbag-jsx/",
  "dependencies": {
    "callbag": "^1.3.0",
    "callbag-state": "^0.2.5",
    "callbag-state-keyed": "^0.2.4",
    "render-jsx": "^0.2.4"
  },
  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@babel/preset-env": "^7.12.1",
    "@rollup/plugin-babel": "^5.2.1",
    "@rollup/plugin-node-resolve": "^10.0.0",
    "@types/chai": "^4.2.14",
    "@types/jsdom": "^16.2.4",
    "@types/jsdom-global": "^3.0.2",
    "@types/mocha": "^8.0.4",
    "@types/node": "^14.11.8",
    "@types/webpack": "^4.41.22",
    "@typescript-eslint/eslint-plugin": "^4.10.0",
    "@typescript-eslint/parser": "^4.10.0",
    "callbag-behavior-subject": "^1.2.0",
    "callbag-debounce": "^2.1.2",
    "callbag-expr": "^0.2.0",
    "callbag-interval": "^1.1.0",
    "callbag-map": "^1.1.0",
    "callbag-pipe": "^1.2.0",
    "callbag-subject": "^2.1.0",
    "callbag-subscribe": "^1.5.1",
    "callbag-tap": "^1.3.0",
    "chai": "^4.2.0",
    "eslint": "^7.15.0",
    "html-webpack-plugin": "^4.5.0",
    "jsdom": "^16.4.0",
    "jsdom-global": "^3.0.2",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "nyc-config-tsx": "^0.1.0",
    "rollup": "^2.33.1",
    "rollup-plugin-terser": "^7.0.2",
    "ts-loader": "^8.0.5",
    "ts-node": "^9.0.0",
    "tslib": "^2.0.3",
    "typescript": "^4.0.3",
    "webpack": "^5.1.1",
    "webpack-cli": "^4.0.0",
    "webpack-dev-server": "^3.11.0",
    "webpack-merge": "^5.2.0"
  },
  "nyc": {
    "extends": "nyc-config-tsx",
    "all": true,
    "include": [
      "src/**/*.ts",
      "src/**/*.tsx"
    ],
    "exclude": [
      "src/**/test/*",
      "src/types/*"
    ],
    "reporter": [
      "text",
      "lcov"
    ]
  }
}
