Skip to content

Commit b3aa693

Browse files
committed
2 parents 84c1969 + 455b312 commit b3aa693

File tree

4 files changed

+3419
-7
lines changed

4 files changed

+3419
-7
lines changed

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Jacob Parker and Maximilian Stoiber
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,9 @@ import { getPropertyName, getStylesForProperty } from 'css-to-react-native';
9292
getPropertyName('border-width'); // => 'borderWidth'
9393
getStylesForProperty('borderWidth', '1 0 2 0'); // => { borderTopWidth: 1, ... }
9494
```
95+
96+
## License
97+
98+
Licensed under the MIT License, Copyright © 2016 Jacob Parker and Maximilian Stoiber.
99+
100+
See [LICENSE.md](./LICENSE.md) for more information.

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "css-to-react-native",
33
"version": "1.0.1",
4-
"description": "",
4+
"description": "Convert CSS text to a React Native stylesheet object",
55
"main": "dist/index.js",
66
"scripts": {
77
"build-grammar": "nearleyc src/grammar.ne -o src/grammar.js",
@@ -13,9 +13,9 @@
1313
"type": "git",
1414
"url": "git+https://github.com/styled-components/css-to-react-native.git"
1515
},
16-
"keywords": [],
17-
"author": "",
18-
"license": "ISC",
16+
"keywords": ["styled-components", "React", "ReactNative", "styles", "CSS"],
17+
"author": "Jacob Parker",
18+
"license": "MIT",
1919
"bugs": {
2020
"url": "https://github.com/styled-components/css-to-react-native/issues"
2121
},
@@ -26,9 +26,7 @@
2626
"eslint": "^3.9.1",
2727
"eslint-config-airbnb-base": "^10.0.1",
2828
"eslint-plugin-import": "^2.2.0",
29-
"jest": "^17.0.0",
30-
"nearley": "^2.7.7",
31-
"pegjs": "^0.10.0"
29+
"jest": "^17.0.0"
3230
},
3331
"dependencies": {
3432
"css-color-list": "0.0.1",

0 commit comments

Comments
 (0)