This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.67 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
{
"name": "fastify-aws-cognito",
"version": "1.1.0",
"description": "AWS Cognito authentication support for Fastify.",
"main": "dist/index.js",
"author": "Francis Brito <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/http-errors": "^1.6.1",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.6.8",
"@types/node-jose": "^1.1.0",
"coveralls": "^3.0.5",
"husky": "^3.0.1",
"jest": "^24.8.0",
"jest-axios-mock": "^1.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
},
"dependencies": {
"axios": "^0.19.0",
"fastify": "^2.6.0",
"fastify-plugin": "^1.6.0",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"mem": "^5.1.1",
"node-jose": "^1.1.3",
"snyk": "^1.465.0"
},
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"posttest:ci": "cat coverage/lcov.info | coveralls",
"build": "tsc",
"prebuild": "rimraf dist/",
"prepublishOnly": "yarn build",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.ts": [
"prettier-tslint fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/francisbrito/fastify-aws-cognito.git"
},
"keywords": [
"fastify",
"aws",
"cognito",
"jwt"
],
"snyk": true
}