{ "name": "react-container-query", "version": "0.9.1", "description": "Container Query for React Component", "author": "Daiwei Lu (http://daiwei.lu)", "repository": { "type": "git", "url": "git+https://github.com/d6u/react-container-query.git" }, "keywords": [ "reactjs", "react", "react-component", "container-query", "element-query", "responsive" ], "license": "MIT", "bugs": { "url": "https://github.com/d6u/react-container-query/issues" }, "homepage": "https://github.com/d6u/react-container-query", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ "dist", "lib", "src" ], "dependencies": { "container-query-toolkit": "0.1.1", "lodash": "4.*", "resize-observer-lite": "0.2.2" }, "devDependencies": { "@types/lodash": "4.14.64", "@types/react": "15.0.24", "@types/react-dom": "15.5.0", "babel-cli": "6.24.1", "babel-core": "6.24.1", "babel-eslint": "7.2.3", "babel-loader": "6.3.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.18.8", "eslint": "3.19.0", "eslint-config-rackt": "1.1.1", "eslint-plugin-react": "7.0.0", "expect": "1.20.2", "gulp": "3.9.1", "gulp-debug": "3.1.0", "gulp-watch": "4.3.11", "istanbul-combine": "^0.3.0", "jasmine-core": "2.6.1", "karma": "1.7.0", "karma-babel-preprocessor": "6.0.1", "karma-chrome-launcher": "2.1.1", "karma-coverage": "1.1.1", "karma-jasmine": "1.1.0", "karma-sauce-launcher": "1.1.0", "karma-sourcemap-loader": "0.3.7", "karma-spec-reporter": "0.0.31", "karma-webpack": "2.0.3", "mocha": "3.3.0", "onchange": "3.2.1", "react": "15.*", "react-dom": "15.*", "rimraf": "2.6.1", "tslint": "5.2.0", "typescript": "2.2.2", "webpack": "1.13.3", "yargs": "8.0.1" }, "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" } }