mirror of
https://github.com/sweidac/peasy.git
synced 2025-07-27 11:21:55 +02:00
29 lines
707 B
JSON
29 lines
707 B
JSON
{
|
|
"name": "@sweidac/peasy",
|
|
"version": "0.0.1",
|
|
"description": "Make creating HTMLElements easy with the help of tag functions.",
|
|
"main": "dist/peasy.js",
|
|
"author": "Simon Weidacher <sweidac@weidautzel.de>",
|
|
"repository" : {
|
|
"type" : "git",
|
|
"url" : "https://github.com/sweidac/peasy"
|
|
},
|
|
"license": "MIT",
|
|
"private": false,
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
|
|
"package": "yarn rollup -c"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.3.1",
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
"rollup": "^3.9.1",
|
|
"rollup-plugin-terser": "^7.0.2"
|
|
},
|
|
"files" : [
|
|
"dist/peasy.js",
|
|
"dist/peasy.min.js"
|
|
]
|
|
}
|