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.46 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 <[email protected]>",
"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.26.34",
"object-hash": "^2.0.3",
"yup": "^0.28.3"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "13.11.0",
"@types/object-hash": "1.3.1",
"@types/request-promise-native": "1.0.17",
"apollo-server": "2.11.0",
"codecov": "3.6.5",
"coveralls": "3.0.11",
"docz": "2.3.1",
"docz-theme-default": "1.2.0",
"graphql": "14.5.8",
"graphql-middleware": "4.0.2",
"graphql-shield-rules": "0.0.1",
"graphql-tools": "4.0.6",
"husky": "4.2.3",
"jest": "25.2.7",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.1",
"remark-emoji": "2.1.0",
"rimraf": "3.0.2",
"semantic-release": "17.0.4",
"ts-jest": "25.3.1",
"ts-node": "8.8.2",
"tslint": "6.1.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"typescript": "3.8.3"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.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"
}
}