UNPKG

2.23 kBJSONView Raw
1{
2 "name": "jwks-rsa",
3 "version": "1.7.0",
4 "description": "Library to retrieve RSA public keys from a JWKS endpoint",
5 "main": "lib/index.js",
6 "types": "index.d.ts",
7 "dependencies": {
8 "@types/express-jwt": "0.0.42",
9 "debug": "^4.1.0",
10 "jsonwebtoken": "^8.5.1",
11 "limiter": "^1.1.4",
12 "lru-memoizer": "^2.0.1",
13 "ms": "^2.1.2",
14 "request": "^2.88.0"
15 },
16 "devDependencies": {
17 "@types/chai": "^4.2.5",
18 "@types/mocha": "^5.2.7",
19 "@types/nock": "^10.0.3",
20 "babel-cli": "^6.9.0",
21 "babel-core": "^6.9.0",
22 "babel-eslint": "^8.2.6",
23 "babel-preset-es2015": "^6.9.0",
24 "babel-preset-stage-0": "^6.5.0",
25 "chai": "^3.5.0",
26 "eslint": "^5.16.0",
27 "eslint-plugin-babel": "^5.3.0",
28 "express": "^4.17.1",
29 "express-jwt": "^3.4.0",
30 "koa": "^2.11.0",
31 "koa-jwt": "^3.6.0",
32 "mocha": "^6.2.2",
33 "nock": "^10.0.6",
34 "nyc": "^15.0.0",
35 "passport": "^0.4.0",
36 "passport-jwt": "^4.0.0",
37 "rimraf": "^2.7.1",
38 "supertest": "^3.4.2",
39 "ts-node": "^8.5.4",
40 "typescript": "^3.7.2"
41 },
42 "scripts": {
43 "clean": "rimraf lib/",
44 "clean:ts": "rimraf ts-output/",
45 "compile": "babel -d lib/ src/",
46 "lint": "eslint ./src ./tests",
47 "prepublish": "npm run clean && npm run compile",
48 "test:ts": "npm run clean:ts && tsc && NODE_ENV=test mocha --require babel-core/register --exit --timeout 5000 $(find ./ts-output -name *.tests.js)",
49 "test:js": "NODE_ENV=test mocha --require babel-core/register --exit --timeout 5000 $(find ./tests -name *.tests.js)",
50 "test": "npm run test:js && npm run test:ts",
51 "test:ci": "nyc --reporter=lcov npm test",
52 "test-watch": "NODE_ENV=test mocha --require babel-core/register --exit --timeout 5000 $(find ./tests -name *.tests.js) --watch",
53 "release": "git tag $npm_package_version && git push && git push --tags && npm publish"
54 },
55 "repository": {
56 "type": "git",
57 "url": "git+https://github.com/auth0/node-jwks-rsa.git"
58 },
59 "keywords": [
60 "jwks",
61 "rsa",
62 "jwt"
63 ],
64 "author": "Auth0",
65 "license": "MIT",
66 "bugs": {
67 "url": "https://github.com/auth0/node-jwks-rsa/issues"
68 },
69 "homepage": "https://github.com/auth0/node-jwks-rsa#readme"
70}