-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "condor-jwt-keycloak",
"version": "0.0.2",
"description": "Condor authentication Middleware using JWTs from keycloak",
"main": "index.js",
"scripts": {
"test": "istanbul cover jasmine",
"posttest": "npm run lint && nsp check && istanbul check-coverage",
"lint": "eslint .",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsu/condor-jwt-keycloak.git"
},
"keywords": [
"condor",
"middleware",
"authentication",
"authorization",
"grpc",
"jwt",
"bearer",
"keycloak"
],
"author": "Cesar Salazar @ Devsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/devsu/condor-jwt-keycloak/issues"
},
"homepage": "https://github.com/devsu/condor-jwt-keycloak#readme",
"devDependencies": {
"condor-context-test-helper": "0.0.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-devsu-node": "0.0.3",
"istanbul": "^0.4.5",
"jasmine": "^2.6.0",
"jasmine-spy": "0.0.2",
"nock": "^9.0.13",
"nsp": "^2.6.3",
"proxyquire": "^1.7.11",
"simple-bearer-token-test-helper": "0.0.6"
},
"dependencies": {
"condor-jwt": "^0.3.1",
"jws": "^3.1.4",
"pem-jwk": "^1.5.1",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"peerDependencies": {}
}