{
  "name": "resub",
  "version": "2.3.2",
  "description": "A library for writing React components that automatically manage subscriptions to data sources simply by accessing them.",
  "author": "ReactXP Team <reactxp@microsoft.com>",
  "scripts": {
    "prepublishOnly": "npm run build",
    "clean:dist": "rimraf dist*",
    "build:types": "tsc -p tsconfig/types.json",
    "build:es2015": "tsc -p tsconfig.json",
    "build:cjs": "tsc -p tsconfig/cjs.json",
    "build": "run-s clean:* lint build:*",
    "karma:single-run": "karma start --singleRun",
    "karma:watch": "karma start",
    "test": "run-s clean:* karma:single-run",
    "test:watch": "run-s clean:* karma:watch",
    "lint": "eslint --config .eslintrc --ext .ts,.tsx src test",
    "lint:fix": "npm run lint -- --fix"
  },
  "dependencies": {
    "tslib": "^2.6.2"
  },
  "peerDependencies": {
    "react": ">=16.11.0"
  },
  "devDependencies": {
    "@cfaester/enzyme-adapter-react-18": "^0.7.1",
    "@types/enzyme": "3.10.14",
    "@types/jasmine": "4.3.6",
    "@types/lodash": "4.14.199",
    "@types/react": "18.2.22",
    "@types/react-dom": "18.2.7",
    "@typescript-eslint/eslint-plugin": "6.7.2",
    "@typescript-eslint/parser": "6.7.2",
    "enzyme": "3.11.0",
    "eslint": "8.50.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-react": "7.33.2",
    "fork-ts-checker-webpack-plugin": "8.0.0",
    "jasmine": "5.1.0",
    "jasmine-core": "5.1.1",
    "karma": "6.4.2",
    "karma-chrome-launcher": "3.2.0",
    "karma-jasmine": "5.1.0",
    "karma-jasmine-html-reporter": "2.1.0",
    "karma-sourcemap-loader": "0.4.0",
    "karma-spec-reporter": "0.0.36",
    "karma-webpack": "5.0.0",
    "lodash": "^4.17.21",
    "npm-run-all": "4.1.5",
    "react": ">=18.2.0",
    "react-dom": ">=18.2.0",
    "rimraf": "5.0.1",
    "ts-loader": "9.4.4",
    "tslint": "6.1.0",
    "typescript": "5.2.2",
    "webpack": "5.88.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/ReSub"
  },
  "bugs": {
    "url": "https://github.com/Microsoft/ReSub/issues"
  },
  "types": "dist-types/ReSub.d.ts",
  "module": "dist-es2015/ReSub.js",
  "main": "dist/ReSub.js",
  "files": [
    "dist",
    "dist-es2015",
    "dist-types"
  ],
  "keywords": [
    "react",
    "flux",
    "automatic",
    "subscriptions",
    "stores"
  ],
  "license": "MIT"
}
