forked from fastify/fastify-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "fastify-oauth2",
"version": "3.2.0",
"description": "Perform login using oauth2 protocol",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"unit": "tap test.js",
"test": "npm run lint && npm run unit && npm run test:typescript",
"test:typescript": "tsd",
"coverage": "npm run unit -- --cov --coverage-report=html"
},
"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": "^2.0.1",
"nock": "^9.0.0",
"pre-commit": "^1.2.2",
"simple-get": "^3.0.2",
"snazzy": "^8.0.0",
"standard": "^14.3.3",
"tap": "^12.0.0",
"tsd": "^0.11.0"
},
"dependencies": {
"es6-promisify": "^6.0.0",
"fastify-plugin": "^1.0.1",
"simple-oauth2": "^1.6.0"
}
}