forked from maticzav/graphql-shield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.43 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
{
"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": {
"clean": "rimraf dist",
"compile": "tsc -d",
"pretest": "npm-run-all clean compile",
"test": "NODE_ENV=test jest",
"posttest": "npm-run-all lint",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore src/**/*.ts",
"coverage": "yarn codecov",
"prepublishOnly": "npm-run-all compile",
"prerelease": "npm-run-all test",
"release": "semantic-release",
"postinstall": "opencollective postinstall"
},
"dependencies": {
"object-hash": "^1.3.1",
"opencollective": "1.0.3"
},
"devDependencies": {
"@types/graphql": "14.0.5",
"@types/jest": "23.3.13",
"@types/node": "10.12.21",
"@types/object-hash": "1.2.0",
"@types/request-promise-native": "1.0.15",
"apollo-server": "2.4.0",
"codecov": "3.1.0",
"coveralls": "3.0.2",
"graphql": "14.1.1",
"graphql-middleware": "3.0.2",
"graphql-tools": "4.0.4",
"graphql-yoga": "1.17.4",
"husky": "1.3.1",
"jest": "23.6.0",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"prettier-check": "2.0.0",
"pretty-quick": "1.10.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"ts-jest": "23.10.5",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.3.1"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-middleware": "^2.0.0 || ^3.0.0"
},
"resolutions": {
"graphql-yoga/graphql": "14.1.1"
},
"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"
}
}