forked from dbartholomae/middy-middleware-jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "middy-middleware-jwt-auth",
"version": "2.3.0",
"description": "A middy JSON web token authorization middleware inspired by express-jwt.",
"homepage": "",
"license": "MIT",
"author": {
"name": "Daniel Bartholomae",
"email": "daniel@bartholomae.name",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"middy",
"middleware",
"jwt",
"json web token"
],
"types": "lib/index.d.ts",
"engines": {
"npm": ">= 4.0.0"
},
"private": false,
"dependencies": {
"@types/debug": "^4.1.0",
"@types/http-errors": "^1.6.1",
"@types/jsonwebtoken": "^8.3.0",
"debug": "^4.1.0",
"http-errors": "^1.7.1",
"jsonwebtoken": "^8.4.0"
},
"peerDependencies": {
"middy": "^0.22.0"
},
"directories": {
"docs": "docs",
"example": "examples"
},
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.build.json",
"docs": "typedoc",
"pretest": "npm run build",
"release": "semantic-release",
"start": "cd test && serverless offline",
"test": "npm run lint && npm run test:unit && npm run test:integration && pkg-ok",
"test:integration": "concurrently --kill-others --success first \"cd test && serverless offline\" \"wait-on http://localhost:3000/status && jest -c jest.integration.config.js\"",
"test:unit": "jest",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"precommit:lint:fix": "tslint --project tsconfig.json --fix"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^24.0.6",
"@types/supertest": "^2.0.7",
"codecov": "^3.2.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"husky": "^3.0.0",
"jest": "^23.1.0",
"jest-junit": "^7.0.0",
"lint-staged": "^9.0.0",
"middy": "^0.28.0",
"moment": "^2.24.0",
"pkg-ok": "^2.3.1",
"prettier-standard": "^9.1.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.3",
"serverless": "^1.37.1",
"serverless-offline": "^5.0.0",
"serverless-webpack": "^5.2.0",
"source-map-support": "^0.5.10",
"supertest": "^4.0.2",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.0",
"typedoc": "^0.15.0",
"typescript": "^3.1.2",
"wait-on": "^3.2.0",
"webpack": "^4.37.0"
},
"repository": "git@github.com:dbartholomae/middy-middleware-jwt-auth.git"
}