This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 2.27 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
{
"name": "keycloak-connect-graphql",
"version": "0.7.0",
"description": "Add Keycloak authentication and authorization to your GraphQL server.",
"keywords": [
"graphql",
"apollo",
"keycloak",
"authentication",
"express"
],
"author": "AeroGear Team<[email protected]>",
"homepage": "http://aerogear.org",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aerogear/keycloak-connect-graphql"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "tsc --build",
"watch": "tsc --build tsconfig.json --watch",
"compile:clean": "tsc --build tsconfig.json --clean",
"test": "nyc ava -v",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint '*/*/src/**/*.ts' --exclude 'src/**/*.test.ts' && tslint -c tslint_tests.json 'src/**/*.test.ts'",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"release:publish": "./scripts/publishRelease.sh",
"examples:seed": "node scripts/initKeycloak.js"
},
"dependencies": {
"@graphql-tools/utils": "7.2.3"
},
"devDependencies": {
"@types/express-session": "1.17.3",
"@types/graphql": "14.2.3",
"@types/keycloak-connect": "4.5.4",
"@types/node": "10.17.50",
"@types/sinon": "9.0.10",
"ava": "2.4.0",
"cors": "2.8.5",
"coveralls": "3.1.0",
"express": "4.17.1",
"express-session": "1.17.1",
"graphql": "15.4.0",
"graphql-subscriptions": "1.1.0",
"keycloak-request-token": "0.1.0",
"keycloak-admin": "1.14.4",
"nyc": "15.1.0",
"sinon": "9.2.2",
"subscriptions-transport-ws": "0.9.18",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"typescript": "4.1.3",
"apollo-server-express": "2.19.1",
"keycloak-connect": "12.0.1"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0",
"keycloak-connect": ">=9.0.0"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
]
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"files": [
"**/*.test.ts"
],
"require": [
"ts-node/register"
]
}
}