@hirez_io/observer-spy
Version:
A simple little class that helps making Observable testing a breeze
74 lines (73 loc) • 1.83 kB
JSON
{
"name": "@hirez_io/observer-spy",
"version": "2.2.0",
"repository": {
"type": "git",
"url": "https://github.com/hirezio/observer-spy"
},
"description": "A simple little class that helps making Observable testing a breeze",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"scripts": {
"clean": "rimraf dist",
"commit": "git-cz",
"compile": "tsc",
"build": "run-s clean compile",
"generate-toc": "doctoc README.md",
"test": "jest",
"test:watch": "jest --watch",
"test:full": "run-s lint test",
"format:fix": "pretty-quick --staged",
"lint": "tslint -p .",
"prepublishOnly": "yarn run build",
"postpublish": "yarn run clean",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"observables",
"rxjs",
"spies",
"mocks",
"async methods",
"TypeScript Tests"
],
"author": {
"name": "Shai Reznik",
"company": "HiRez.io"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@types/jest": "^27.0.3",
"all-contributors-cli": "6.20.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.1.0",
"husky": "^7.0.0",
"jest": "^27.4.4",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"pretty-quick": "3.1.2",
"rimraf": "3.0.2",
"rxjs": "~7.4.0",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.1",
"tslint": "6.1.3",
"typescript": "^4.5.3"
},
"peerDependencies": {
"rxjs": ">=6.0.0",
"typescript": ">=2.8.1"
}
}