-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "@treedom/graphql-auth-opa",
"version": "1.1.0",
"main": "lib/index.js",
"scripts": {
"test": "mkdir -p ./dist/lib && cp ./src/lib/opaAuthDirective.gql ./dist/lib/ && borp --coverage --coverage-exclude test/**/*.js",
"lint": "eslint src --cache",
"prebuild": "rm -rf lib",
"build": "tsc --build tsconfig.build.json",
"postbuild": "copyfiles src/lib/**/*.gql lib/ --all --verbose --up 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treedomtrees/graphql-auth-opa.git"
},
"keywords": [
"auth",
"opa",
"graphql"
],
"type": "commonjs",
"author": "Matteo Granziera <m.granziera@treedom.net",
"license": "MIT",
"description": "GraphQL OPA authentication directive",
"dependencies": {
"@graphql-tools/utils": "^10.5.4",
"object-hash": ">=3.0.0",
"undici": ">=6.0.0"
},
"devDependencies": {
"@apollo/server": "^4.11.0",
"@as-integrations/fastify": "^2.1.1",
"@styra/opa": "^1.5.0",
"@treedom/opa-client-sdk": "^3.2.0",
"@types/node": "20.14.0",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"borp": "0.14.0",
"copyfiles": "2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fastify": "4.27.0",
"pino": "9.1.0",
"pino-pretty": "11.1.0",
"prettier": "^3.2.5",
"sinon": "18.0.0",
"typescript": "5.4.5"
},
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0"
}
}