UNPKG

space-router

Version:
64 lines (63 loc) 1.43 kB
{ "name": "space-router", "description": "All the routing essentials.", "version": "0.9.3", "main": "dist/cjs", "module": "dist/esm", "license": "ICS", "repository": { "type": "git", "url": "git://github.com/KidkArolis/space-router.git" }, "keywords": [ "browser", "router", "small", "clientside", "universal", "history", "location", "url" ], "engines": { "node": ">=14" }, "author": "Karolis Narkevicius", "scripts": { "test": "npm run build && healthier && prettier --check '**/*.{js,css,yml}' && c8 ava", "format": "prettier --write '**/*.{js,css,yml}'", "coverage": "c8 --reporter=html ava", "build": "node ./tasks/build.js", "watch": "node ./tasks/build.js -w", "release": "np --no-release-draft", "release:beta": "np --tag=beta --no-release-draft", "release:docs": "hugo -s docs && gh-pages -d docs/public" }, "devDependencies": { "@swc-node/register": "^1.9.1", "@swc/cli": "^0.3.12", "@swc/core": "^1.4.17", "ava": "^6.1.2", "c8": "^9.1.0", "execa": "^8.0.1", "gh-pages": "^6.1.1", "healthier": "^7.0.0", "prettier": "^3.2.5" }, "healthier": { "global": [ "location", "history", "requestAnimationFrame" ], "ignore": [ "docs/static/js", "docs/assets/js" ] }, "ava": { "require": [ "@swc-node/register" ] } }