UNPKG

fastify-supabase

Version:

Supabase client initialization and encapsulation in fastify framework

55 lines (54 loc) 1.54 kB
{ "name": "fastify-supabase", "version": "1.2.1", "description": "Supabase client initialization and encapsulation in fastify framework", "main": "plugin.js", "types": "plugin.d.ts", "scripts": { "lint": "standard --verbose", "lint:fix": "standard --fix", "test": "npm run lint && npm run unit && npm run test:typescript", "test:ci": "npm run unit:coverage && npm run test:typescript", "test:typescript": "tsd", "unit": "tap -J test/plugin.test.js", "unit:coverage": "npm run unit -- --cov --coverage-report=lcovonly --no-browser", "unit:report": "npm run unit -- --cov --coverage-report=html", "unit:verbose": "npm run unit -- -Rspec" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/coopflow/fastify-supabase.git" }, "keywords": [ "fastify", "fastify-plugin", "fastify-supabase", "postgreSQL", "supabase" ], "author": "Jean-Michel Coghe <jean.michel.coghe@coopflow.com>", "license": "MIT", "bugs": { "url": "https://github.com/coopflow/fastify-supabase/issues" }, "homepage": "https://github.com/coopflow/fastify-supabase#readme", "engines": { "node": ">=14" }, "dependencies": { "@supabase/supabase-js": "^1.30.7", "fastify-plugin": "^3.0.1" }, "devDependencies": { "coveralls": "^3.1.1", "dotenv": "^16.0.0", "fastify": "^3.27.2", "standard": "^16.0.4", "tap": "^15.1.6", "tsd": "^0.19.1", "typescript": "^4.6.2" }, "tsd": { "directory": "test/types" } }