{ "name": "ppppp-hub", "version": "0.0.1", "description": "PPPPP hub server", "author": "Andre Staltz ", "license": "MIT", "homepage": "https://github.com/staltz/ppppp-hub", "repository": { "type": "git", "url": "git@github.com:staltz/ppppp-hub.git" }, "main": "index.js", "files": [ "*.js", "lib/*.js" ], "exports": { ".": { "require": "./lib/index.js" } }, "type": "commonjs", "engines": { "node": ">=16" }, "dependencies": { "@fastify/static": "6.10.2", "@fastify/view": "7.4.1", "ejs": "3.1.9", "fastify": "4.17.0", "fastify-markdown": "0.4.0" }, "devDependencies": { "c8": "7", "prettier": "^2.6.2", "pretty-quick": "^3.1.3", "tap-arc": "^0.3.5", "tape": "^5.6.3" }, "scripts": { "test": "tape test/*.js | tap-arc --bail", "format-code": "prettier --write \"(lib|test)/**/*.js\"", "format-code-staged": "pretty-quick --staged --pattern \"(lib|test)/**/*.js\"", "coverage": "c8 --reporter=lcov npm run test" }, "husky": { "hooks": { "pre-commit": "npm run format-code-staged" } } }