This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

57 lines
1.7 KiB
JSON
Raw Normal View History

2021-04-02 02:24:13 +03:00
{
"name": "css-in-js-utils",
"version": "2.0.1",
"description": "Useful utility functions for CSS in JS solutions",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"keywords": [
"css",
"cssinjs",
"utils"
],
"repository": "https://github.com/rofrischmann/css-in-js-utils.git",
"author": "Robin Frischmann <robin@rofrischmann.de>",
"license": "MIT",
"scripts": {
"babel": "babel -d lib modules",
"check": "npm run format && npm run lint && npm run test:coverage && npm run flow",
"format": "prettier-eslint modules",
"flow": "flow",
"lint": "eslint modules",
"release": "npm run check && npm run babel && npm publish",
"test": "jest",
"test:coverage": "jest --coverage"
},
"jest": {
"rootDir": "modules"
},
"dependencies": {
"hyphenate-style-name": "^1.0.2",
"isobject": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"jest": "^18.1.0",
"prettier-eslint-cli": "^1.1.0"
}
}