convert-csv-to-json 2.45.0 → 2.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CONTRIBUTING.md +41 -0
  2. package/package.json +2 -2
@@ -0,0 +1,41 @@
1
+ ## Contributing
2
+
3
+ [fork]: /fork
4
+ [pr]: /compare
5
+ [style]: https://standardjs.com/
6
+ [code-of-conduct]: CODE_OF_CONDUCT.md
7
+
8
+ Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
9
+
10
+ Please note that this project is released with a [Contributor Code of Conduct][code-of-conduct]. By participating in this project you agree to abide by its terms.
11
+
12
+ ## Issues and PRs
13
+
14
+ If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them.
15
+
16
+ We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, though! Look at the links below if you're not sure how to open a PR.
17
+
18
+ ## Submitting a pull request
19
+
20
+ 1. [Fork][fork] and clone the repository.
21
+ 1. Configure and install the dependencies: `npm install`.
22
+ 1. Make sure the tests pass on your machine: `npm test`, note: these tests also apply the linter, so there's no need to lint separately.
23
+ 1. Create a new branch: `git checkout -b my-branch-name`.
24
+ 1. Make your change, add tests, and make sure the tests still pass.
25
+ 1. Push to your fork and [submit a pull request][pr].
26
+ 1. Pat your self on the back and wait for your pull request to be reviewed and merged.
27
+
28
+ Here are a few things you can do that will increase the likelihood of your pull request being accepted:
29
+
30
+ - Follow the [style guide][style] which is using standard. Any linting errors should be shown when running `npm test`.
31
+ - Write and update tests.
32
+ - Keep your changes as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
33
+ - Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
34
+
35
+ Work in Progress pull requests are also welcome to get feedback early on, or if there is something blocked you.
36
+
37
+ ## Resources
38
+
39
+ - [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
40
+ - [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
41
+ - [GitHub Help](https://help.github.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "2.45.0",
3
+ "version": "2.47.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "typescript"
39
39
  ],
40
40
  "author": "iuccio",
41
- "license": "ISC",
41
+ "license": "GPL-3.0",
42
42
  "bugs": {
43
43
  "url": "https://github.com/iuccio/CSVtoJSON/issues"
44
44
  },