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": "h3", "version": "0.1.0", "description": "A tiny, extremely minimalist client side web framework.", "main": "h3.js", "directories": { "example": "example", "site": "site" }, "scripts": { "test": "jest", "coverage": "jest --coverage", "copy": "cp h3.js docs/js/h3.js && cp h3.js docs/example/assets/js/h3.js", "guide": "hastyscribe docs/H3_DeveloperGuide.md" }, "repository": { "type": "git", "url": "git+https://github.com/h3rald/h3.git" }, "keywords": [ "javascript", "virtual-dom", "router", "storeon", "redux", "spa", "client-side", "framework", "minimalist" ], "author": "Fabio Cevasco", "license": "MIT", "bugs": { "url": "https://github.com/h3rald/h3/issues" }, "homepage": "https://github.com/h3rald/h3#readme", "devDependencies": { "@babel/plugin-transform-modules-commonjs": "^7.9.0", "@babel/preset-env": "^7.9.5", "jest": "^25.3.0" } } |