{
  "name": "redapp",
  "version": "1.2.1",
  "description": "Redux web3 integration and util for DApps",
  "scripts": {
    "build": "npm run clean && run-p build:**",
    "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
    "build:umd": "cross-env BABEL_ENV=umd NODE_ENV=development rollup -c -o dist/redapp.js",
    "build:umd:min": "cross-env BABEL_ENV=umd NODE_ENV=production rollup -c -o dist/redapp.min.js",
    "clean": "rimraf lib dist es coverage docs-out",
    "test": "npm run lint && npm run cover",
    "test:prod": "cross-env BABEL_ENV=production npm run test",
    "test:only": "mocha --compilers js:@babel/register",
    "test:watch": "npm test -- --watch",
    "cover": "istanbul cover _mocha -- --compilers js:@babel/register --recursive",
    "lint": "eslint src test",
    "prepare": "npm run clean && npm run lint && npm run test && npm run build",
    "docs": "./scripts/build-docs.sh",
    "docs-examples": "./scripts/build-docs-examples.sh",
    "view-docs": "http-server docs-out -p 8080 -a localhost"
  },
  "main": "lib/index.js",
  "unpkg": "dist/index.min.js",
  "module": "es/index.js",
  "jsnext:main": "es/index.js",
  "files": [
    "dist",
    "lib",
    "es",
    "src",
    "LICENSE",
    "CHANGELOG.md",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/protolambda/redapp.git"
  },
  "keywords": [
    "ethereum",
    "redux",
    "dapp",
    "tracking",
    "transaction",
    "transactions",
    "smartcontract",
    "smartcontracts"
  ],
  "author": "@protolambda <proto@protolambda.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/protolambda/redapp/issues"
  },
  "homepage": "https://github.com/protolambda/redapp#readme",
  "devDependencies": {
    "@babel/cli": "7.0.0",
    "@babel/core": "7.0.0",
    "@babel/register": "7.0.0",
    "@babel/plugin-external-helpers": "7.0.0",
    "@babel/plugin-transform-runtime": "7.0.0",
    "@babel/preset-env": "7.0.0",
    "@babel/preset-stage-2": "7.0.0",
    "@babel/runtime": "7.0.0",
    "@babel/plugin-proposal-decorators": "7.0.0",
    "@babel/plugin-proposal-function-sent": "7.0.0",
    "@babel/plugin-proposal-export-namespace-from": "7.0.0",
    "@babel/plugin-proposal-numeric-separator": "7.0.0",
    "@babel/plugin-proposal-throw-expressions": "7.0.0",
    "@babel/plugin-syntax-dynamic-import": "7.0.0",
    "@babel/plugin-syntax-import-meta": "7.0.0",
    "@babel/plugin-proposal-class-properties": "7.0.0",
    "@babel/plugin-proposal-json-strings": "7.0.0",
    "babel-eslint": "^8.2.4",
    "chai": "^4.1.2",
    "cross-env": "^5.2.0",
    "esdoc": "^1.1.0",
    "esdoc-ecmascript-proposal-plugin": "^1.0.0",
    "esdoc-importpath-plugin": "^1.0.2",
    "esdoc-brand-plugin": "git://github.com/protolambda/esdoc-plugins.git#esdoc-brand-plugin-v1.1.1-gitpkg",
    "esdoc-integrate-manual-plugin": "git://github.com/protolambda/esdoc-plugins.git#esdoc-integrate-manual-plugin-v2.0.0-gitpkg",
    "esdoc-publish-html-plugin": "git://github.com/protolambda/esdoc-plugins.git#esdoc-publish-html-plugin-v1.2.0-gitpkg",
    "esdoc-standard-plugin": "^1.0.0",
    "eslint": "^5.3.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.14.0",
    "http-server": "^0.11.1",
    "istanbul": "^1.0.0-alpha",
    "loose-envify": "^1.1.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.3",
    "rimraf": "^2.6.2",
    "rollup": "^0.63.4",
    "rollup-plugin-babel": "^4.0.0-beta.7",
    "rollup-plugin-commonjs": "^9.1.3",
    "rollup-plugin-node-resolve": "^3.3.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-uglify": "^4.0.0",
    "symbol-observable": "^1.2.0"
  },
  "dependencies": {
    "redux": "^4.0.0",
    "redux-saga": "^0.16.0",
    "uuid": "^3.3.2",
    "web3": "^1.0.0-beta.34",
    "web3-utils": "^1.0.0-beta.34"
  },
  "npmName": "redux",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ],
  "browserify": {
    "transform": [
      "loose-envify"
    ]
  }
}
