{
    "name": "dynamicdatajs",
    "version": "0.1.0",
    "description": "",
    "author": "David Driscoll",
    "module": "esm/index.js",
    "main": "index.js",
    "typings": "index.d.ts",
    "files": [
        "esm",
        "binding",
        "cache",
        "diagnostics",
        "notify",
        "util",
        "src",
        "*.js*",
        "*.d.ts"
    ],
    "scripts": {
        "build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
        "test": "jest",
        "lint": "eslint --fix src/**/*.ts test/**/*.ts",
        "prepare": "npm run build"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/david-driscoll/DynamicDataJs.git"
    },
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/david-driscoll/DynamicDataJs/issues"
    },
    "homepage": "https://github.com/david-driscoll/DynamicDataJs#readme",
    "devDependencies": {
        "@babel/core": "^7.11.6",
        "@babel/plugin-transform-for-of": "^7.10.4",
        "@babel/preset-env": "^7.11.5",
        "@babel/preset-typescript": "^7.10.4",
        "@types/faker": "^5.1.0",
        "@types/jest": "^26.0.13",
        "@types/node": "^14.10.1",
        "@types/webpack": "^4.41.22",
        "@typescript-eslint/eslint-plugin": "^4.1.0",
        "@typescript-eslint/parser": "^4.1.0",
        "@vue/reactivity": "^3.0.0-rc.10",
        "babel-jest": "^26.3.0",
        "cross-env": "^7.0.2",
        "eslint": "^7.9.0",
        "eslint-config-prettier": "^6.11.0",
        "eslint-config-standard": "^14.1.1",
        "eslint-plugin-import": "^2.22.0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^3.1.4",
        "eslint-plugin-promise": "^4.2.1",
        "eslint-plugin-standard": "^4.0.1",
        "eslint-plugin-unicorn": "^21.0.0",
        "faker": "^5.1.0",
        "husky": "^4.3.0",
        "ix": "^4.0.0",
        "jest": "^26.4.2",
        "lint-staged": "^10.3.0",
        "prettier": "^2.1.1",
        "rxjs": "^6.6.3",
        "ts-jest": "^26.3.0",
        "ts-node": "^9.0.0",
        "tsdx": "^0.13.3",
        "typescript": "^4.0.2"
    },
    "dependencies": {
        "binary-search": "^1.3.6",
        "fast-deep-equal": "^3.1.3"
    },
    "peerDependencies": {
        "ix": "^4.0.0",
        "rxjs": "^6.0.0"
    },
    "lint-staged": {
        "*.{ts}": [
            "eslint --fix",
            "prettier --fix"
        ]
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
}
