1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "jasmine-marbles",
- "description": "Marble testing helpers for RxJS and Jasmine",
- "keywords": [
- "jasmine",
- "rxjs",
- "ngrx",
- "testing"
- ],
- "version": "0.9.2",
- "module": "index.js",
- "es2015": "es6/index.js",
- "main": "bundles/jasmine-marbles.umd.js",
- "repository": {
- "type": "git",
- "url": "https://github.com/synapse-wireless-labs/jasmine-marbles.git"
- },
- "homepage": "https://github.com/synapse-wireless-labs/jasmine-marbles#readme",
- "bugs": "https://github.com/synapse-wireless-labs/jasmine-marbles/issues",
- "license": "MIT",
- "scripts": {
- "clean": "rimraf release",
- "build:ts": "tsc",
- "build:es6": "tsc -p tsconfig.es6.json",
- "build:docs": "cpy LICENSE package.json README.md release",
- "prebuild": "npm run clean",
- "build": "npm run build:ts && npm run build:umd && npm run build:docs",
- "postversion": "npm run build",
- "build:umd": "npm run build:es6 && rollup -c rollup.config.js",
- "test": "jest",
- "precommit": "yarn run prettier",
- "prettier": "prettier --parser typescript --single-quote --trailing-comma all --write \"./**/*.ts\"",
- "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
- },
- "nyc": {
- "extension": [
- ".ts"
- ],
- "exclude": [
- "**/*.spec",
- "**/spec/**/*"
- ],
- "include": [
- "src/**/*.ts"
- ],
- "reporter": [
- "text-summary",
- "html"
- ]
- },
- "devDependencies": {
- "@babel/core": "^7.14.6",
- "@babel/preset-env": "^7.14.7",
- "@babel/preset-typescript": "^7.14.5",
- "@types/jest": "^26.0.23",
- "@types/lodash": "^4.14.106",
- "@types/node": "^14.17.0",
- "babel-jest": "^27.0.6",
- "conventional-changelog": "^3.1.12",
- "conventional-changelog-cli": "^2.0.25",
- "cpy-cli": "^1.0.1",
- "husky": "^0.14.3",
- "jasmine": "^3.7.0",
- "jest": "^27.0.6",
- "jest-jasmine2": "^27.0.6",
- "nyc": "^15.1.0",
- "prettier": "^2.3.0",
- "rimraf": "^2.6.1",
- "rollup": "^2.49.0",
- "rxjs": "^7.0.0",
- "ts-node": "^9.1.1",
- "typescript": "^4.2.0"
- },
- "peerDependencies": {
- "rxjs": "^7.0.0"
- },
- "dependencies": {
- "lodash": "^4.17.20"
- }
- }
|