-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ari Bouius
committed
May 26, 2017
1 parent
e5b82a0
commit d346d2b
Showing
1 changed file
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"name": "react-themed", | ||
"description": "A simple theme provider and composition utility for react applications.", | ||
"version": "3.0.0", | ||
"description": "A flexible library for styling React components", | ||
"version": "3.1.0", | ||
"main": "./lib/index.js", | ||
"module": "es/index.js", | ||
"jsnext:main": "es/index.js", | ||
"author": "Ari Bouius <[email protected]> (http://github.com/aribouius)", | ||
"license": "MIT", | ||
"homepage": "https://github.com/aribouius/react-themed", | ||
"repository": { | ||
|
@@ -14,6 +15,12 @@ | |
"bugs": { | ||
"url": "https://github.com/aribouius/react-themed/issues" | ||
}, | ||
"files": [ | ||
"dist", | ||
"lib", | ||
"src", | ||
"es" | ||
], | ||
"scripts": { | ||
"clean": "rm -rf lib && rm -rf es && rm -rf dist", | ||
"build": "yarn run build:es && yarn run build:commonjs && yarn run build:umd && yarn run build:umd:min", | ||
|
@@ -68,9 +75,23 @@ | |
}, | ||
"keywords": [ | ||
"react", | ||
"reactjs", | ||
"theme", | ||
"theming", | ||
"themes", | ||
"style", | ||
"styles", | ||
"styling", | ||
"components", | ||
"styled-components", | ||
"styled components", | ||
"css", | ||
"modules" | ||
"jss", | ||
"css modules", | ||
"css-modules", | ||
"css-in-js", | ||
"css in js", | ||
"compose", | ||
"composable" | ||
] | ||
} |