🎉 Restore from production
parents
Showing
LICENCE
0 → 100644
README.md
0 → 100644
package.json
0 → 100644
| { | |||
| "name": "styled-breakpoints", | |||
| "version": "4.0.3", | |||
| "description": "Simple and powerfull css breakpoints for styled-components", | |||
| "main": "dist/styled-breakpoints.common.js", | |||
| "module": "dist/styled-breakpoints.es.js", | |||
| "jsnext:main": "dist/styled-breakpoints.es.js", | |||
| "keywords": [ | |||
| "styled-components", | |||
| "media-query", | |||
| "media", | |||
| "breakpoint", | |||
| "css-in-js" | |||
| ], | |||
| "scripts": { | |||
| "unit:watch": "NODE_ENV=test jest --watch", | |||
| "build": "npm run clean && npm run build:common && npm run build:es && npm run build:browser", | |||
| "build:common": "cross-env rollup -c --environment COMMON,PRODUCTION", | |||
| "build:es": "cross-env rollup -c --environment ES", | |||
| "build:browser": "cross-env rollup -c --environment BROWSER,PRODUCTION", | |||
| "clean": "cross-env rimraf dist" | |||
| }, | |||
| "files": [ | |||
| "dist", | |||
| "src" | |||
| ], | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "git+https://github.com/maxinakenty/styled-breakpoints.git" | |||
| }, | |||
| "contributors": [ | |||
| "Maxim Alyoshing <mgreen097@gmail.com>", | |||
| "Sergey Sova <mail@sergeysova.com> (https://sergeysova.com)", | |||
| "Scott Dowding (https://github.com/sdowding)" | |||
| ], | |||
| "license": "MIT", | |||
| "devDependencies": { | |||
| "@babel/core": "^7.1.2", | |||
| "@babel/preset-env": "^7.1.0", | |||
| "babel-jest": "^23.6.0", | |||
| "cross-env": "^5.2.0", | |||
| "eslint": "^5.8.0", | |||
| "eslint-config-airbnb": "^17.1.0", | |||
| "eslint-config-prettier": "^3.1.0", | |||
| "eslint-plugin-import": "^2.11.0", | |||
| "eslint-plugin-jsx-a11y": "^6.0.3", | |||
| "eslint-plugin-prettier": "^3.0.0", | |||
| "eslint-plugin-react": "^7.7.0", | |||
| "jest": "^23.6.0", | |||
| "rimraf": "^2.6.2", | |||
| "rollup": "^0.67.0", | |||
| "rollup-plugin-babel": "^4.0.3", | |||
| "rollup-plugin-commonjs": "^9.2.0", | |||
| "rollup-plugin-node-resolve": "^3.0.0", | |||
| "rollup-plugin-uglify": "^6.0.0", | |||
| "styled-components": "^4.0.3" | |||
| }, | |||
| "jest": { | |||
| "collectCoverage": false, | |||
| "transform": { | |||
| "^.+\\.js$": "./node_modules/babel-jest" | |||
| }, | |||
| "testFileExtensions": [ | |||
| "es6", | |||
| "js" | |||
| ], | |||
| "moduleFileExtensions": [ | |||
| "js", | |||
| "json", | |||
| "es6" | |||
| ] | |||
| } | |||
| } |
rollup.config.js
0 → 100644
src/helpers.js
0 → 100644
src/index.js
0 → 100644
yarn.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
Please
register
or
sign in
to comment