fastify-at-postgres
Version:
Fastify Postgress to prevent SQL injection attacks
60 lines (59 loc) • 1.64 kB
JSON
{
"name": "fastify-at-postgres",
"version": "0.3.1",
"description": "Fastify Postgress to prevent SQL injection attacks",
"main": "index.js",
"types": "types/index.d.ts",
"author": {
"name": "Mateo Nunez",
"email": "mateonunez95@gmail.com",
"url": "http://github.com/mateonunez"
},
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "npm run lint && npm run unit && npm run typescript",
"test:ci": "tap --coverage-report=lcov test/*.test.js && npm run typescript",
"typescript": "tsd",
"postgres": "docker-compose up -d",
"unit": "tap test/*.test.js",
"unit:report": "tap test/test.js --cov --coverage-report=html --coverage-report=cobertura",
"unit:verbose": "tap test/test.js -Rspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateonunez/fastify-at-postgres.git"
},
"keywords": [
"fastify",
"postgres",
"@databases"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mateonunez/fastify-at-postgres/issues"
},
"homepage": "https://github.com/mateonunez/fastify-at-postgres#readme",
"dependencies": {
"fastify-plugin": "^4.5.1",
"@databases/pg": "^5.5.0",
"@databases/sql": "3.3.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^20.9.0",
"fastify": "^4.24.3",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^16.3.9",
"tsd": "^0.29.0",
"typescript": "^4.9.5"
},
"pre-commit": [
"test"
],
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@7.18.2"
}