Skip to content

Commit 1f70680

Browse files
author
Ari Bouius
committed
initial commit
0 parents  commit 1f70680

25 files changed

+11502
-0
lines changed

.babelrc

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/env",
5+
{
6+
"modules": false,
7+
"exclude": [
8+
"@babel/plugin-transform-regenerator"
9+
]
10+
}
11+
],
12+
"@babel/react"
13+
],
14+
"plugins": [
15+
[
16+
"module:fast-async",
17+
{
18+
"compiler": {
19+
"noRuntime": true
20+
}
21+
}
22+
]
23+
],
24+
"env": {
25+
"test": {
26+
"presets": [
27+
[
28+
"@babel/env",
29+
{
30+
"modules": "commonjs",
31+
"exclude": [
32+
"@babel/plugin-transform-regenerator"
33+
]
34+
}
35+
]
36+
]
37+
}
38+
}
39+
}

.eslintrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": ["react-app", "prettier"],
4+
"env": {
5+
"es6": true
6+
},
7+
"parserOptions": {
8+
"sourceType": "module"
9+
}
10+
}

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# dependencies
2+
node_modules
3+
4+
# builds
5+
dist
6+
7+
# misc
8+
.DS_Store
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
.history

.size-snapshot.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"dist/index.js": {
3+
"bundled": 31464,
4+
"minified": 16507,
5+
"gzipped": 5069
6+
},
7+
"dist/index.es.js": {
8+
"bundled": 31098,
9+
"minified": 16202,
10+
"gzipped": 4995,
11+
"treeshaked": {
12+
"rollup": {
13+
"code": 75,
14+
"import_statements": 57
15+
},
16+
"webpack": {
17+
"code": 1135
18+
}
19+
}
20+
}
21+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Ari Bouius
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.

0 commit comments

Comments
 (0)