{
    "name": "roxanne",
    "version": "4.0.0",
    "description": "roxanne is an implementation of the Redux pattern using rxjs.",
    "main": "dist/es2015/index.js",
    "types": "dist/es2015/index.d.ts",
    "repository": {
        "type": "git",
        "url": "https://github.com/ophirbushi/roxanne.git"
    },
    "keywords": [
        "rxjs",
        "rx",
        "simple",
        "redux",
        "typescript",
        "state",
        "state-management"
    ],
    "scripts": {
        "docs": "typedoc --tsconfig ./tsconfig-es2015.json --out docs ./src --excludeNotExported --exclude \"**/*+(index|.spec|.e2e).ts\"",
        "rm:dist": "rimraf ./dist",
        "rm:docs": "rimraf ./docs",
        "rm": "npm run rm:dist && npm run rm:docs",
        "prebuild": "npm run test && npm run rm && npm run docs",
        "build": "tsc -p ./tsconfig-es5.json && tsc -p ./tsconfig-es2015.json",
        "pretest": "tsc -p ./spec",
        "test": "jasmine",
        "prepublish": "npm run build"
    },
    "author": "Ophir Bushinsky",
    "license": "MIT",
    "peerDependencies": {
        "rxjs": ">=6.3.3"
    },
    "devDependencies": {
        "@types/jasmine": "^2.8.6",
        "jasmine": "^3.1.0",
        "rimraf": "^2.6.3",
        "rxjs": "^6.5.4",
        "typedoc": "^0.17.7",
        "typescript": "^3.9.2"
    }
}
