-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
75 lines (75 loc) · 2 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
{
"name": "fastify-auth0-verify",
"version": "3.0.0",
"description": "Auth0 verification plugin for Fastify",
"author": "NearForm Ltd",
"homepage": "https://github.com/nearform/fastify-auth0-verify",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "Simone Busoli",
"email": "[email protected]",
"url": "https://github.com/simoneb"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"fastify",
"fastify-plugin",
"auth0"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-auth0-verify.git"
},
"bugs": {
"url": "https://github.com/nearform/fastify-auth0-verify/issues"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node --test --experimental-test-coverage --experimental-test-module-mocks ./test/test.js",
"test:ci": "npm run lint && npm run test && npm run test:types",
"test:integration": "node --test ./test/integration.test.js",
"test:types": "tsd",
"lint": "eslint index.js test",
"prepublishOnly": "npm run test:ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/jwt": "^9.0.1",
"fastify-jwt-jwks": "^2.0.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"cross-fetch": "^4.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.1",
"fast-jwt": "^4.0.0",
"fastify": "^5.0.0",
"jest": "^29.0.0",
"nock": "^13.0.2",
"prettier": "^3.0.1",
"tsd": "^0.31.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">= 20"
}
}