-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "graphql-field-policy",
"version": "0.0.3",
"description": "Intuitive policy-based field-level authorization for GraphQL JS",
"keywords": [
"graphql",
"authorization",
"policy",
"policies"
],
"repository": "github:kalzoo/graphql-js-field-policy",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "yarn lint && yarn test",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"author": "kalzoo",
"license": "MIT",
"jest": {
"collectCoverage": true,
"roots": [
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"peerDependencies": {
"graphql": "^14"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-jest": "^24.9.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"graphql": "^14.4.2",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}