-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"name": "graphql-resolvable-directive",
"version": "0.0.0-development",
"description": "Supports GraphQL custom directives that hook into the field execution.",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/graphql-resolvable-directive/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/graphql-resolvable-directive#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/graphql-resolvable-directive.git"
},
"bugs": {
"url": "https://github.com/prantlf/graphql-resolvable-directive/issues"
},
"engines": {
"node": ">=8"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "standard --verbose --fix",
"check": "nyc ava",
"test": "npm run lint && npm run check"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"devDependencies": {
"ava": "2.4.0",
"graphql": "14.5.7",
"graphql-field-visitor": "0.0.3",
"nyc": "14.1.1",
"standard": "14.3.1"
},
"keywords": [
"graphql",
"directive",
"graphql-directive",
"schema",
"field",
"resolve"
]
}