Skip to content

Commit eed5231

Browse files
authored
Merge pull request #51 from bence-toth/package-json-update
package.json update
2 parents eebc948 + 88fe584 commit eed5231

File tree

3 files changed

+34
-13
lines changed

3 files changed

+34
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Create React Thing’s boilerplate is meant for React libraries you would typica
3737

3838
## What’s included?
3939

40-
Your environment will have many tools to help you build a modern React libraries:
40+
Your environment will have many tools to help you build modern React libraries:
4141

4242
- [React](https://reactjs.org/), [ES.next](https://babeljs.io/docs/en/babel-preset-env) and [JSX](https://reactjs.org/docs/introducing-jsx.html) syntax support with [Babel](https://babeljs.io/)
4343

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## 1.0.1
4+
5+
Filled in missing fields (keyword, description, author etc.) in `package.json`.
6+
7+
Fixed typo in `README.md`.
8+
9+
310
## 1.0.0
411

512
Initial release.

package.json

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,34 @@
11
{
22
"name": "create-react-thing",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
4+
"description": "Create rich boilerplate for React libraries with ease",
5+
"keywords": [
6+
"react component library boilerplate",
7+
"react npm library boilerplate",
8+
"react library boilerplate",
9+
"react boilerplate",
10+
"react",
11+
"boilerplate"
12+
],
13+
"homepage": "https://github.com/bence-toth/create-react-thing#readme",
14+
"repository": {
15+
"type": "git",
16+
"url": "github:bence-toth/create-react-thing"
17+
},
18+
"bugs": {
19+
"url": "https://github.com/bence-toth/create-react-thing/issues"
20+
},
421
"license": "MIT",
22+
"author": {
23+
"name": "Bence A. Tóth",
24+
"email": "tothab@gmail.com",
25+
"url": "https://github.com/bence-toth"
26+
},
527
"bin": "src/index.js",
628
"engines": {
729
"node": ">=12",
830
"npm": ">=5.2"
931
},
10-
"scripts": {
11-
"lint": "eslint --ignore-path .gitignore --ext .jsx --ext .js .",
12-
"test": "echo \"Error: no test specified\" && exit 1"
13-
},
1432
"files": [
1533
"LICENSE",
1634
"README.md",
@@ -42,17 +60,13 @@
4260
"ink-testing-library": "^1.0.3",
4361
"eslint": "^6.8.0"
4462
},
45-
"ava": {
46-
"require": [
47-
"@babel/register"
48-
]
63+
"scripts": {
64+
"lint": "eslint --ignore-path .gitignore --ext .jsx --ext .js .",
65+
"test": "echo \"Error: no test specified\" && exit 1"
4966
},
5067
"babel": {
5168
"presets": [
5269
"@babel/preset-react"
5370
]
54-
},
55-
"xo": {
56-
"extends": "xo-react"
5771
}
5872
}

0 commit comments

Comments
 (0)