-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 KB
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
{
"name": "graphql-authz",
"version": "0.0.1",
"description": "Integrated Casbin into GraphQL.js",
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"prepack": "run-s lint test build",
"postpack": "run-s clean",
"build": "run-s clean && run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest --forceExit",
"lint": "eslint . --ext .js,.ts",
"fmt": "eslint . --ext .js,.ts --fix",
"clean": "rimraf lib",
"coverage": "jest --forceExit --coverage"
},
"devDependencies": {
"@graphql-tools/schema": "^7.1.5",
"@types/jest": "^26.0.24",
"@types/node": "^10.5.3",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"apollo-server": "^2.25.2",
"casbin": "5.9.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"graphql": "^15.0.0",
"graphql-middleware": "^6.0.0",
"jest": "^27.0.6",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tslint": "^5.11.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0",
"graphql-middleware": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^6.0.0"
},
"files": [
"lib",
"tests"
],
"homepage": "https://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/graphql-authz.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"casbin": "5.9.0",
"@graphql-tools/utils": "^7.10.0"
}
}