package.json
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
{
"name": "@h3rald/h3",
"version": "0.11.1",
"conver": "6000",
"versionName": "Lucky Lurian",
"description": "A tiny, extremely minimalist JavaScript microframework.",
"main": "h3.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage ",
"prebuild": "node scripts/release.js",
"copy": "cp h3.js docs/js/h3.js && cp h3.js docs/example/assets/js/h3.js",
"guide": "hastyscribe docs/H3_DeveloperGuide.md",
"build": "npm run copy && npm run guide",
"pack": "tar -C docs -cvz . > site.tar.gz",
"publish": "hut pages publish -d h3rald.srht.site --subdirectory=/h3 site.tar.gz"
},
"repository": {
"type": "git",
"url": "git+https://git.sr.ht/~h3rald/h3"
},
"keywords": [
"javascript",
"virtual-dom",
"router",
"storeon",
"redux",
"spa",
"client-side",
"framework",
"minimalist"
],
"author": "Fabio Cevasco",
"license": "MIT",
"homepage": "https://h3.js.org",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1"
}
}
|