UNPKG

rx-sandbox

Version:

Marble diagram DSL based test suite for RxJS 6/7

88 lines (87 loc) 2.23 kB
{ "name": "rx-sandbox", "version": "2.0.5", "description": "Marble diagram DSL based test suite for RxJS 6/7", "main": "./dist/index.js", "types": "./dist/index.d.ts", "lint-staged": { "*.{ts,js}": [ "prettier --write --single-quote --print-width 120 --jsx-bracket-same-line true", "tslint --fix", "git add" ] }, "scripts": { "prepublishOnly": "npm-run-all build:clean build", "test": "jest --coverage", "lint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\" \"spec/**/*.ts\"", "lint:staged": "lint-staged", "build": "tsc -b --verbose src/tsconfig.json spec/tsconfig.json", "build:clean": "shx rm -rf ./dist ./.tmp", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s" }, "repository": { "type": "git", "url": "git+https://github.com/kwonoj/rx-sandbox.git" }, "keywords": [ "Rx", "RxJS", "ReactiveX", "ReactiveExtensions", "Streams", "Observables", "Observable", "Stream", "ES6", "ES2015" ], "author": "OJ Kwon <kwon.ohjoong@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/kwonoj/rx-sandbox/issues" }, "homepage": "https://github.com/kwonoj/rx-sandbox#readme", "devDependencies": { "@commitlint/cli": "^16.2.4", "@commitlint/config-angular": "^16.2.4", "@types/jest": "^27.0.2", "@types/node": "^20.4.4", "conventional-changelog-cli": "^2.1.1", "cz-conventional-changelog": "^3.3.0", "enhanced-resolve": "^5.8.3", "husky": "^3.1.0", "jest": "^29.6.1", "jest-spin-reporter": "^2.0.0", "lint-staged": "^12.4.1", "npm-run-all": "^4.1.5", "prettier": "^2.4.1", "shx": "^0.3.3", "ts-jest": "^29.1.1", "tslint": "^6.1.3", "typescript": "^5.1.6" }, "peerDependencies": { "rxjs": "^7.8.1" }, "dependencies": { "expect": "^28.1.0", "jest-matcher-utils": "^28.1.0" }, "husky": { "hooks": { "commit-msg": "commitlint -e", "pre-commit": "lint-staged", "pre-push": "npm-run-all build test" } }, "files": [ "dist", "src", "CHANGELOG.md", "LICENSE", "package.json", "README.md", "tsconfig.json" ] }