forked from maticzav/graphql-shield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.47 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
88
89
90
{
"name": "graphql-shield",
"description": "GraphQL Server permissions as another layer of abstraction!",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Matic Zavadlal <matic.zavadlal@gmail.com>",
"scripts": {
"compile": "tsc -d",
"coverage": "codecov",
"clean": "rimraf dist",
"docz:dev": "docz dev",
"docz:build": "docz build",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore src/**/*.ts",
"posttest": "npm-run-all lint",
"prepublishOnly": "npm-run-all compile",
"release": "semantic-release",
"test": "npm-run-all --parallel test:*",
"test:jest": "NODE_ENV=test jest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@types/yup": "0.29.7",
"object-hash": "^2.0.3",
"yup": "^0.29.0"
},
"devDependencies": {
"@types/jest": "26.0.13",
"@types/node": "13.13.20",
"@types/object-hash": "1.3.3",
"@types/request-promise-native": "1.0.17",
"apollo-server": "2.17.0",
"codecov": "3.7.0",
"coveralls": "3.1.0",
"docz": "2.3.1",
"docz-theme-default": "1.2.0",
"graphql": "15.3.0",
"graphql-middleware": "4.0.2",
"graphql-shield-rules": "0.0.1",
"graphql-tools": "6.2.2",
"husky": "4.3.0",
"jest": "25.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.2",
"remark-emoji": "2.1.0",
"rimraf": "3.0.2",
"semantic-release": "17.1.1",
"ts-jest": "26.3.0",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.7"
},
"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"
},
"files": [
"dist"
],
"release": {
"branch": "master"
},
"homepage": "https://github.com/maticzav/graphql-shield",
"repository": {
"type": "git",
"url": "https://github.com/maticzav/graphql-shield.git"
},
"bugs": {
"url": "https://github.com/maticzav/graphql-shield/issues"
},
"keywords": [
"graphql",
"permissions",
"shield",
"server",
"authentication",
"authorization",
"rules"
],
"license": "MIT",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/graphql-shield",
"logo": "https://opencollective.com/graphql-shield/logo.txt"
}
}