ffc-pay-etl-framework 0.0.3 → 0.0.4
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.
- package/README.md +35 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
## 🚀 Features
|
|
2
|
+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
3
|
+
[](#contributors-)
|
|
4
|
+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
2
5
|
- 💾 CSV Source and Destination
|
|
3
6
|
- 👮 Validators
|
|
4
7
|
- 🤖 Transformers
|
|
@@ -53,3 +56,35 @@ etl
|
|
|
53
56
|
|
|
54
57
|
Please make sure to read the [Contributing Guide](https://github.com/DEFRA/ffc-pay-etl-framework/blob/next/CONTRIBUTING.md) before making a pull request.
|
|
55
58
|
|
|
59
|
+
|
|
60
|
+
## Contributors ✨
|
|
61
|
+
|
|
62
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
63
|
+
|
|
64
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
65
|
+
<!-- prettier-ignore-start -->
|
|
66
|
+
<!-- markdownlint-disable -->
|
|
67
|
+
<table>
|
|
68
|
+
<tbody>
|
|
69
|
+
<tr>
|
|
70
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/suityou01"><img src="https://avatars.githubusercontent.com/u/7422644?v=4?s=100" width="100px;" alt="Charlie Benger-Stevenson"/><br /><sub><b>Charlie Benger-Stevenson</b></sub></a><br /><a href="https://github.com/DEFRA/ffc-pay-etl-framework/commits?author=suityou01" title="Code">💻</a></td>
|
|
71
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/GodsonLeigh"><img src="https://avatars.githubusercontent.com/u/139965284?v=4?s=100" width="100px;" alt="GodsonLeigh"/><br /><sub><b>GodsonLeigh</b></sub></a><br /><a href="https://github.com/DEFRA/ffc-pay-etl-framework/commits?author=GodsonLeigh" title="Code">💻</a></td>
|
|
72
|
+
</tr>
|
|
73
|
+
</tbody>
|
|
74
|
+
<tfoot>
|
|
75
|
+
<tr>
|
|
76
|
+
<td align="center" size="13px" colspan="7">
|
|
77
|
+
<img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
|
|
78
|
+
<a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
|
|
79
|
+
</img>
|
|
80
|
+
</td>
|
|
81
|
+
</tr>
|
|
82
|
+
</tfoot>
|
|
83
|
+
</table>
|
|
84
|
+
|
|
85
|
+
<!-- markdownlint-restore -->
|
|
86
|
+
<!-- prettier-ignore-end -->
|
|
87
|
+
|
|
88
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
89
|
+
|
|
90
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ffc-pay-etl-framework",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publisher": "Defra",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"license": "OGL-UK-3.0",
|
|
23
23
|
"description": "A framework for creating ETL pipelines in node",
|
|
24
24
|
"devDependencies": {
|
|
25
|
+
"all-contributors-cli": "^6.26.1",
|
|
25
26
|
"jest": "^29.7.0",
|
|
26
27
|
"nodemon": "^3.1.4",
|
|
27
28
|
"prettier": "3.3.3"
|