-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 952 Bytes
/
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
{
"name": "graphql-filter-field",
"version": "0.1.1",
"description": "filter any field on Schema not just root field",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc",
"test": "npm run build && nyc ava dist/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/komcal/graphql-filter-field.git"
},
"keywords": [
"graphql",
"schema",
"field",
"resolver"
],
"author": "komcal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/komcal/graphql-filter-field/issues"
},
"homepage": "https://github.com/komcal/graphql-filter-field#readme",
"dependencies": {
"graphql": "^14.1.1",
"graphql-tools": "^4.0.4"
},
"devDependencies": {
"@types/graphql": "^14.0.5",
"ava": "^1.2.0",
"nyc": "^13.1.0",
"typescript": "^3.2.4"
}
}