-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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-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"
}
}