UNPKG

2.9 kBJSONView Raw
1{
2 "name": "react-container-query",
3 "version": "0.5.8",
4 "description": "Container Query for React Component",
5 "author": "Daiwei Lu <daiweilu123@gmail.com> (http://daiwei.lu)",
6 "main": "./lib/index.js",
7 "jsnext:main": "./src/index.js",
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/d6u/react-container-query.git"
11 },
12 "keywords": [
13 "reactjs",
14 "react",
15 "react-component",
16 "container-query",
17 "element-query",
18 "responsive"
19 ],
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/d6u/react-container-query/issues"
23 },
24 "homepage": "https://github.com/d6u/react-container-query",
25 "files": [
26 "dist",
27 "lib",
28 "src"
29 ],
30 "dependencies": {
31 "element-resize-detector": "1.1.5",
32 "lodash": "4.13.1"
33 },
34 "devDependencies": {
35 "babel-cli": "6.10.1",
36 "babel-core": "6.10.4",
37 "babel-eslint": "6.1.0",
38 "babel-loader": "6.2.4",
39 "babel-plugin-__coverage__": "11.0.0",
40 "babel-preset-es2015": "6.9.0",
41 "babel-preset-es2015-loose": "7.0.0",
42 "babel-preset-react": "6.11.1",
43 "browser-sync": "2.13.0",
44 "classnames": "2.2.5",
45 "eslint": "2.13.1",
46 "eslint-config-rackt": "1.1.1",
47 "eslint-plugin-react": "5.2.2",
48 "gulp": "3.9.1",
49 "gulp-debug": "2.1.2",
50 "gulp-watch": "4.3.8",
51 "invariant": "2.2.1",
52 "istanbul-combine": "^0.3.0",
53 "jasmine-core": "2.4.1",
54 "karma": "1.1.1",
55 "karma-babel-preprocessor": "6.0.1",
56 "karma-chrome-launcher": "1.0.1",
57 "karma-coverage": "1.1.0",
58 "karma-jasmine": "1.0.2",
59 "karma-sauce-launcher": "1.0.0",
60 "karma-sourcemap-loader": "0.3.7",
61 "karma-spec-reporter": "0.0.26",
62 "karma-webpack": "1.7.0",
63 "onchange": "2.5.0",
64 "react": "15.1.0",
65 "react-dom": "15.1.0",
66 "rimraf": "2.5.2",
67 "tslint": "3.13.0",
68 "typescript": "1.8.10",
69 "typings": "1.3.1",
70 "webpack": "1.13.1",
71 "yargs": "4.8.0"
72 },
73 "scripts": {
74 "setup": "typings install",
75 "build:lib": "tsc",
76 "build:umd": "webpack lib/index.js dist/react-container-query.js --config config/webpack.config.development.js",
77 "build:umd:min": "webpack lib/index.js dist/react-container-query.min.js --config config/webpack.config.production.js",
78 "build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
79 "lint:js": "eslint config/webpack.config.*",
80 "lint:ts": "tslint src/**/*.ts",
81 "lint": "npm run lint:js && npm run lint:ts",
82 "test": "npm run clean && npm run build:lib && env NODE_ENV=test karma start",
83 "combine-coverage-results": "istanbul-combine -d coverage/summary -p both -r json -r html coverage/*-json/coverage-final.json",
84 "check": "npm run lint && npm test && npm run combine-coverage-results",
85 "clean": "rimraf lib dist coverage public",
86 "preversion": "npm run check",
87 "postversion": "git push && git push --tags"
88 }
89}