{
  "name": "@boneskull/unexpected-rxjs",
  "version": "0.3.0",
  "description": "RxJS Assertions for Unexpected",
  "keywords": [
    "assert",
    "assertions",
    "expect",
    "observable",
    "rxjs",
    "unexpected",
    "unexpected-plugin"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/boneskull/unexpected-rxjs.git"
  },
  "license": "Apache-2.0",
  "author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)",
  "main": "dist/unexpected-rxjs.cjs.js",
  "module": "dist/unexpected-rxjs.esm.js",
  "browser": "dist/unexpected-rxjs.umd.js",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "rollup -c",
    "clean": "git clean -fdx dist",
    "dev": "rollup -c -w",
    "prepublishOnly": "npm run clean && npm run build",
    "release": "standard-version",
    "pretest": "npm run build",
    "test": "nyc mocha \"test/**/*.spec.js\"",
    "format": "eslint . --fix && markdownlint-cli2-fix \"*.md\"",
    "posttest": "markdownlint-cli2 README.md && eslint .",
    "prepare": "husky install",
    "lint-staged": "lint-staged"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ],
    "*.{yml,md}": [
      "prettier --write"
    ],
    "*.md": [
      "markdownlint-cli2-fix"
    ]
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "browsers": "> 3%",
            "node": "12.0.0"
          },
          "modules": false
        }
      ]
    ]
  },
  "prettier": {
    "bracketSpacing": false,
    "endOfLine": "auto",
    "singleQuote": true
  },
  "devDependencies": {
    "@babel/core": "^7.5.4",
    "@babel/preset-env": "^7.5.4",
    "eslint": "^7.28.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-config-semistandard": "^15.0.1",
    "eslint-config-standard": "^14.1.1",
    "eslint-plugin-import": "^2.18.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-promise": "^5.1.0",
    "husky": "^6.0.0",
    "lint-staged": "^11.0.0",
    "markdownlint-cli2": "^0.1.3",
    "mocha": "^9.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.3.1",
    "proxyquire": "^2.1.1",
    "rollup": "^2.51.0",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.0.1",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rxjs": "7.1.0",
    "sinon": "^11.1.1",
    "standard-version": "^9.3.0",
    "unexpected": "12.0.3",
    "unexpected-sinon": "^11.0.1"
  },
  "peerDependencies": {
    "rxjs": "^6.0.0 || ^7.0.0",
    "unexpected": "*"
  },
  "engines": {
    "node": ">=12"
  },
  "publishConfig": {
    "access": "public"
  },
  "standard-version": {
    "scripts": {
      "postchangelog": "prettier --write CHANGELOG.md && markdownlint-cli2-fix CHANGELOG.md"
    }
  }
}
