react-container-query
Version:
Container Query for React Component
92 lines (91 loc) • 2.93 kB
JSON
{
"name": "react-container-query",
"version": "0.7.0",
"description": "Container Query for React Component",
"author": "Daiwei Lu <daiweilu123@gmail.com> (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": {
"@types/classnames": "0.0.31",
"@types/lodash": "4.*",
"@types/react": "0.14.*",
"classnames": "2.*",
"container-query-toolkit": "0.0.2",
"lodash": "4.*",
"resize-observer-lite": "0.0.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.0",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.7",
"babel-plugin-__coverage__": "11.0.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2015-loose": "8.0.0",
"babel-preset-react": "6.16.0",
"browser-sync": "2.17.5",
"eslint": "3.9.0",
"eslint-config-rackt": "1.1.1",
"eslint-plugin-react": "6.4.1",
"gulp": "3.9.1",
"gulp-debug": "2.1.2",
"gulp-watch": "4.3.10",
"istanbul-combine": "^0.3.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-sauce-launcher": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"onchange": "3.0.2",
"react": "15.*",
"react-dom": "15.*",
"rimraf": "2.5.4",
"tslint": "3.15.1",
"typescript": "2.0.6",
"webpack": "1.13.3",
"yargs": "6.3.0"
},
"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",
"unit-test": "env NODE_ENV=test karma start",
"pretest": "npm run clean && npm run build",
"test": "npm run lint && npm run unit-test",
"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"
}
}