-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "auth0-rs256-verification",
"version": "1.0.0",
"description": "Demonstrates how use Auth0's JWKS endpoint to lookup the certificate necessary to verify an RS256 signed JWT.",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"test": "eslint src"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-samples/auth0-node-jwks-rs256.git"
},
"keywords": [
"Auth0",
"RS256",
"Resource",
"Server",
"Authorization",
"JWKS",
"JWK"
],
"author": "Shawn G. Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-samples/auth0-node-jwks-rs256/issues"
},
"homepage": "https://github.com/auth0-samples/auth0-node-jwks-rs256#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.18.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"async": "^2.2.0",
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"jsonwebtoken": "^7.3.0",
"lodash.set": "^4.3.2",
"request": "^2.81.0",
"resource-router-middleware": "^0.6.0"
}
}