-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "fastify-api-key",
"version": "1.0.2",
"description": "Fastify plugin to authenticate HTTP requests based on api key and signature",
"author": {
"name": "Axel SHAÏTA",
"email": "[email protected]",
"url": "https://www.codeheroes.fr"
},
"license": "MIT",
"keywords": [
"fastify",
"authentication",
"auth",
"http",
"api",
"rest",
"apiKey",
"key",
"signature",
"plugin",
"nodejs"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "standard && tap test.js && tsd"
},
"repository": {
"type": "git",
"url": "https://github.com/arkerone/fastify-api-key"
},
"bugs": {
"url": "https://github.com/arkerone/fastify-api-key/issues"
},
"homepage": "https://github.com/arkerone/fastify-api-key#readme",
"devDependencies": {
"@types/node": "^14.14.35",
"fastify": "^3.14.0",
"standard": "^16.0.3",
"tap": "^14.11.0",
"tsd": "^0.14.0",
"typescript": "^4.2.3"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"http-errors": "^1.8.0",
"steed": "^1.1.3"
}
}