{
  "name": "rx-maybe",
  "version": "0.5.5",
  "description": "represents a deferred computation and emission of a single value, no value at all or an exception.",
  "main": "index.js",
  "scripts": {
    "linux-mocha": "./node_modules/.bin/mocha --require @babel/register -R spec --recursive",
    "linux-test": "./node_modules/.bin/nyc --reporter=html npm run linux-mocha",
    "linux-docs": "./node_modules/.bin/esdoc",
    "linux-cjs": "./node_modules/.bin/rollup src/index.js --format cjs --name \"Maybe\" --file index.js",
    "linux-browser": "./node_modules/.bin/rollup src/index.js --format iife --name \"Maybe\" --file dist/index.js -g \"rx-cancellable:Cancellable\"",
    "linux-minify": "npm run linux-browser && ./node_modules/.bin/terser dist/index.js --compress --mangle --output dist/index.min.js",
    "linux-build": "npm run linux-cjs && npm run linux-minify && npm run linux-docs && npm run linux-test",
    "win-mocha": "node node_modules/mocha/bin/mocha --require @babel/register -R spec --recursive",
    "win-test": "node node_modules/nyc/bin/nyc.js --reporter=html npm run win-mocha",
    "win-docs": "node node_modules/esdoc/out/src/ESDocCLI.js",
    "win-cjs": "node node_modules/.bin/rollup src/index.js --format cjs --name \"Maybe\" --file index.js",
    "win-browser": "node node_modules/.bin/rollup src/index.js --format iife --name \"Maybe\" --file dist/index.js -g \"rx-cancellable:Cancellable\"",
    "win-minify": "npm run win-browser && node node_modules/.bin/terser dist/index.js --compress --mangle --output dist/index.min.js",
    "win-build": "npm run win-cjs && npm run win-minify && npm run win-docs && npm run win-test",
    "mocha": "npm run linux-mocha || npm run win-mocha",
    "test": "npm run linux-test || npm run win-test",
    "docs": "npm run linux-docs || npm run win-docs",
    "cjs": "npm run linux-cjs || npm run win-cjs",
    "browser": "npm run linux-browser || npm run win-browser",
    "minify": "npm run linux-minify || npm run win-minify",
    "build": "npm run cjs && npm run minify && npm run docs && npm test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LXSMNSYC/rx-maybe.git"
  },
  "keywords": [
    "rx",
    "rxjs",
    "reactivex",
    "maybe"
  ],
  "author": "LXSMNSYC (alexis.munsayac@gmail.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/LXSMNSYC/rx-maybe/issues"
  },
  "homepage": "https://github.com/LXSMNSYC/rx-maybe#readme",
  "devDependencies": {
    "@babel/core": "^7.4.4",
    "@babel/preset-env": "^7.4.4",
    "@babel/register": "^7.4.4",
    "esdoc": "^1.1.0",
    "esdoc-inject-style-plugin": "^1.0.0",
    "esdoc-integrate-test-plugin": "^1.0.0",
    "esdoc-standard-plugin": "^1.0.0",
    "eslint": "^5.16.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.17.2",
    "mocha": "^6.1.4",
    "nyc": "^14.1.0",
    "rollup": "^1.11.3",
    "terser": "^3.17.0"
  },
  "dependencies": {
    "rx-cancellable": "^0.3.2",
    "rx-scheduler": "^0.3.0"
  }
}
