forked from fastify/fastify-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "@fastify/oauth2",
"version": "7.3.0",
"description": "Perform login using oauth2 protocol",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:coverage": "npm run test:unit -- --cov --coverage-report=html",
"test:typescript": "tsd",
"test:unit": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-oauth2.git"
},
"author": "Tommaso Allevi - @allevo",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-oauth2/issues"
},
"keywords": [
"fastify",
"oauth2"
],
"homepage": "https://github.com/fastify/fastify-oauth2#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.5.3",
"@types/simple-oauth2": "^5.0.4",
"fastify": "^4.21.0",
"nock": "^13.3.3",
"simple-get": "^4.0.1",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^16.3.8",
"tsd": "^0.29.0"
},
"dependencies": {
"@fastify/cookie": "^9.0.4",
"fastify-plugin": "^4.5.1",
"simple-oauth2": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}