Initial commit.

This commit is contained in:
Simon Weidacher
2022-12-16 02:21:02 +01:00
commit 8c7dde575f
5 changed files with 136 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "peasy",
"version": "0.0.1",
"description": "Make creating HTMLElements easy with the help of tag functions.",
"main": "index.js",
"author": "Simon Weidacher",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"devDependencies": {
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1"
}
}