-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "cimpress-express-auth0",
"version": "0.0.0-development",
"description": "Express middleware designed for managing a web application's interactions with the Auth0 SDK.",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release"
},
"keywords": [
"auth0",
"oauth",
"express",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/Cimpress-MCP/cimpress-express-auth0.git"
},
"author": "Dave Purrington",
"license": "SEE LICENSE in LICENSE.txt",
"contributors": [
{
"name": "Dan Tocco"
}
],
"dependencies": {
"bluebird": "^3.5.0",
"express-jwt": "^6.0.0",
"express-unless": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.1.1 <1.9.0",
"lodash": "^4.17.21",
"util": "^0.10.3"
},
"devDependencies": {
"assert-plus": "^1.0.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cz-conventional-changelog": "^2.0.0",
"express": "^4.15.2",
"mocha": "^8.3.2",
"mockery": "^2.0.0",
"semantic-release": "^17.4.2",
"semantic-release-cli": "^5.4.3",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"validate-commit-msg": "^2.12.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}