all repos — h3 @ 0c0e83cd257e58656aaabc4e95840e55a2e1ffe9

A tiny, extremely minimalist JavaScript microframework.

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
 43
 44
{
  "name": "@h3rald/h3",
  "version": "0.11.0",
  "versionName": "Keen Klingon",
  "description": "A tiny, extremely minimalist JavaScript microframework.",
  "main": "h3.js",
  "scripts": {
    "test": "jest",
    "coverage": "jest --coverage ",
    "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
    "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"
  },
  "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://h3.js.org",
  "devDependencies": {
    "@babel/plugin-transform-modules-commonjs": "^7.9.0",
    "@babel/preset-env": "^7.9.5",
    "coveralls": "^3.0.11",
    "jest": "^25.3.0",
    "terser": "^4.8.0"
  }
}