-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "passport-paseto",
"version": "0.1.0-alpha.2",
"description": "Paseto passport",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist",
"src",
"tsconfig.json"
],
"engines": {
"node": ">= 16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indiebase/passport-paseto.git"
},
"keywords": [
"passport",
"paseto",
"jwt",
"security"
],
"author": "Han",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/indiebase/passport-paseto/issues"
},
"homepage": "https://github.com/indiebase/passport-paseto#readme",
"dependencies": {
"paseto": "^3.1.2",
"passport-strategy": "^1.0.0"
},
"devDependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/passport": "^2.2.0",
"@fastify/session": "^10.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "16",
"@types/passport-strategy": "^0.2.35",
"chai": "^4.3.7",
"chai-passport-strategy": "^3.0.0",
"fastify": "^4.14.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"packageManager": "[email protected]"
}