Initial commit
parents
Showing
.babelrc
0 → 100644
.gitignore
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "@gsc/graphql-auth", | ||
| "version": "1.0.0", | ||
| "description": "A GraphQL auth directive to verify MS AAD tokens and validate AD group membership", | ||
| "main": "dist/index.js", | ||
| "scripts": { | ||
| "build": "NODE_ENV=production babel src -d dist --copy-files" | ||
| }, | ||
| "author": "Ben Galloway <ben.galloway@gsc.org.uk>", | ||
| "license": "MIT", | ||
| "private": true, | ||
| "dependencies": { | ||
| "azure-ad-jwt": "^1.1.0", | ||
| "nconf": "^0.10.0" | ||
| }, | ||
| "peerDependencies": { | ||
| "graphql-yoga": "^1.16.9" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/cli": "^7.2.3", | ||
| "@babel/core": "^7.2.2", | ||
| "@babel/preset-env": "^7.2.3" | ||
| } | ||
| } |
src/config.js
0 → 100644
src/generateAuthDirective.js
0 → 100644
src/index.js
0 → 100644
src/userUtils.js
0 → 100644
yarn.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
Please register or sign in to comment