forked from fastify/fastify-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 KB
/
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
45
46
47
48
49
50
51
52
53
54
{
"name": "fastify-postgres",
"version": "3.3.0",
"description": "Fastify PostgreSQL connection plugin",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard && tap -J test/*.test.js && npm run test:typescript",
"test:typescript": "tsd",
"test:report": "standard && tap -J --coverage-report=html test/*.test.js",
"test:verbose": "standard && tap -J test/*.test.js -Rspec",
"check-examples": "tsc --build examples/typescript/*",
"postgres": "docker run -p 5432:5432 --name fastify-postgres -e POSTGRES_PASSWORD=postgres -d postgres:11-alpine",
"load-data": "docker exec -it fastify-postgres psql -c 'CREATE TABLE users(id serial PRIMARY KEY, username VARCHAR (50) NOT NULL);' -U postgres -d postgres"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-postgres.git"
},
"keywords": [
"fastify",
"postgres",
"postgresql",
"database",
"connection",
"sql"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-postgres/issues"
},
"homepage": "https://github.com/fastify/fastify-postgres#readme",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"@tsconfig/node10": "^1.0.7",
"@types/pg": "^7.14.4",
"fastify": "^3.0.0",
"pg": "^8.2.1",
"pg-native": "^3.0.0",
"standard": "^16.0.0",
"tap": "^14.10.7",
"tsd": "^0.14.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"pg": ">=6.0.0"
},
"tsd": {
"directory": "test/types"
}
}