-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
77 lines (77 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@fastify/passport",
"version": "3.0.1",
"description": "Simple, unobtrusive authentication for Fastify.",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc && git rev-parse HEAD > BUILD_SHA",
"build:test": "tsc --project tsconfig.test.json",
"lint": "eslint \"*/**/*.{js,ts,tsx}\"",
"lint:fix": "prettier --loglevel warn --write \"src/**/*.{ts,tsx}\" && eslint \"*/**/*.{js,ts,tsx}\" --quiet --fix",
"prepublishOnly": "npm run build",
"test": "npm run build:test && npm run test:unit",
"test:unit": "borp --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-passport.git"
},
"keywords": [
"fastify",
"auth",
"authentication"
],
"contributors": [
"Maksim Sinik <maksim@sinik.it>",
"Harry Brundage <harry@harry.me>"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/fastify/fastify-passport/issues"
},
"homepage": "http://passportjs.org/",
"dependencies": {
"@fastify/flash": "^6.0.0",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/csrf-protection": "^7.0.0",
"@fastify/secure-session": "^8.0.0",
"@fastify/session": "^11.0.0",
"@types/node": "^22.1.0",
"@types/passport": "^1.0.5",
"@types/set-cookie-parser": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.2.1",
"borp": "^0.18.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^5.0.0",
"got": "^11.8.1",
"openid-client": "^5.6.1",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth": "^2.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.1",
"set-cookie-parser": "^2.4.6",
"tsd": "^0.31.0",
"typescript": "~5.6.2"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}