motyl
Version:
Helper functions for creating responsive CSS-in-JS styles without runtime
67 lines (66 loc) • 1.6 kB
JSON
{
"name": "motyl",
"version": "1.0.3",
"description": "Helper functions for creating responsive CSS-in-JS styles without runtime",
"main": "dist/motyl.js",
"module": "dist/motyl.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config",
"test": "jest",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/livyk/motyl.git"
},
"keywords": [
"css-in-js",
"breakpoints",
"fluid",
"responsive",
"linaria",
"styled-components",
"react",
"useBreakpoint"
],
"author": "Nikita Livyk",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/jest": "^26.0.23",
"@types/react-responsive": "^8.0.2",
"babel-jest": "^26.6.3",
"csstype": "^3.0.8",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.3.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"react-responsive": "^8.2.0"
}
}