-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
{
"name": "nexus-shield",
"description": "Nexus schema plugin to ease the creation of the authorization layer",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Emile Fugulin <[email protected]>",
"scripts": {
"build": "tsc -d",
"coverage": "codecov",
"clean": "rm -rf dist",
"release": "semantic-release",
"test": "yarn test:jest && yarn test:types && yarn test:lint",
"test:jest": "NODE_ENV=test jest",
"test:types": "tsc --noEmit",
"test:lint": "eslint --ext .ts,.js src/"
},
"dependencies": {
"object-hash": "^3.0.0"
},
"devDependencies": {
"nexus": "1.3.0",
"@types/jest": "27.5.1",
"@types/node": "17.0.35",
"@types/object-hash": "2.2.1",
"@types/request-promise-native": "1.0.18",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"apollo-server": "3.7.0",
"codecov": "3.8.3",
"coveralls": "3.1.1",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.2.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"graphql": "16.5.0",
"graphql-tools": "8.2.11",
"jest": "28.1.0",
"jest-mock-extended": "2.0.6",
"prettier": "2.6.2",
"semantic-release": "19.0.2",
"ts-jest": "28.0.2",
"ts-node": "10.8.0",
"ts-node-dev": "1.1.8",
"typescript": "4.6.4"
},
"peerDependencies": {
"nexus": "^1.0.0",
"graphql": "^14.5.0 || ^15.0.0 || ^16.0.0"
},
"files": [
"dist"
],
"release": {
"branch": "master"
},
"homepage": "https://github.com/sytten/nexus-shield",
"repository": {
"type": "git",
"url": "https://github.com/sytten/nexus-shield.git"
},
"bugs": {
"url": "https://github.com/sytten/nexus-shield/issues"
},
"keywords": [
"nexus",
"schema",
"graphql",
"permissions",
"shield",
"authorization",
"rules"
],
"license": "MIT"
}