{
  "name": "react-container-query",
  "version": "0.13.0",
  "description": "Container Query for React Component",
  "author": "Daiwei Lu <daiweilu123@gmail.com> (http://daiwei.lu)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/react-container-query/react-container-query.git"
  },
  "keywords": [
    "reactjs",
    "react",
    "react-component",
    "container-query",
    "element-query",
    "responsive"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/react-container-query/react-container-query/issues"
  },
  "homepage": "https://github.com/react-container-query/react-container-query",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "files": [
    "dist",
    "lib",
    "src"
  ],
  "dependencies": {
    "container-query-toolkit": "0.1.3",
    "resize-observer-lite": "0.2.3"
  },
  "devDependencies": {
    "@types/react": "16.0.36",
    "@types/react-dom": "16.0.3",
    "babel-cli": "6.26.0",
    "babel-core": "6.26.0",
    "babel-eslint": "8.2.1",
    "babel-loader": "7.1.2",
    "babel-plugin-__coverage__": "11.0.0",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-es2015-loose": "8.0.0",
    "babel-preset-react": "6.24.1",
    "browser-sync": "2.27.10",
    "eslint": "4.18.2",
    "eslint-config-rackt": "1.1.1",
    "eslint-plugin-react": "7.6.1",
    "expect": "22.1.0",
    "gulp": "3.9.1",
    "gulp-debug": "3.2.0",
    "gulp-watch": "5.0.0",
    "istanbul-combine": "^0.3.0",
    "jasmine-core": "2.9.1",
    "karma": "6.4.1",
    "karma-babel-preprocessor": "7.0.0",
    "karma-chrome-launcher": "2.2.0",
    "karma-coverage": "1.1.1",
    "karma-jasmine": "1.1.1",
    "karma-sauce-launcher": "1.2.0",
    "karma-sourcemap-loader": "0.3.7",
    "karma-spec-reporter": "0.0.32",
    "karma-webpack": "2.0.9",
    "mocha": "10.0.0",
    "onchange": "3.3.0",
    "react": "16.*",
    "react-dom": "16.*",
    "rimraf": "2.6.2",
    "tslint": "5.9.1",
    "typescript": "2.7.1",
    "webpack": "3.10.0",
    "yargs": "11.0.0"
  },
  "peerDependencies": {
    "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0 || ^17 || ^18",
    "react-dom": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0 || ^17 || ^18"
  },
  "scripts": {
    "clean": "rimraf lib dist coverage public",
    "build:lib": "tsc",
    "build:umd": "webpack lib/index.js dist/react-container-query.js --config config/webpack.config.development.js",
    "build:umd:min": "webpack lib/index.js dist/react-container-query.min.js --config config/webpack.config.production.js",
    "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
    "lint:js": "eslint config/webpack.config.*",
    "lint:ts": "tslint src/**/*.ts",
    "lint": "npm run lint:js && npm run lint:ts",
    "test-client": "env NODE_ENV=test karma start",
    "test-server": "env NODE_ENV=test mocha test/server",
    "pretest": "npm run clean && npm run build",
    "test": "npm run lint && npm run test-client && npm run test-server",
    "combine-coverage-results": "istanbul-combine -d coverage/summary -p both -r json -r html coverage/*-json/coverage-final.json",
    "ci": "npm test && npm run combine-coverage-results",
    "preversion": "npm run clean && npm run build"
  }
}
