-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1013 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
39
40
41
42
43
44
45
46
{
"name": "graphql-introfields",
"version": "0.0.0-development",
"description": "GraphQL resolver utilities based on fields introspection",
"main": "dist/index.js",
"author": "Joel Marcotte",
"license": "MIT",
"keywords": [
"apollo-server",
"apollo",
"graphql",
"resolvers",
"typescript"
],
"scripts": {
"test": "jest --coverage",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist"
],
"devDependencies": {
"@graphql-tools/schema": "6.2.4",
"@types/jest": "26.0.14",
"jest": "26.4.2",
"jest-extended": "0.11.5",
"prettier": "2.1.2",
"semantic-release": "17.1.2",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
},
"renovate": {
"extends": [
"config:js-lib"
]
},
"repository": {
"type": "git",
"url": "https://github.com/SurveyMonkey/graphql-introfields.git"
},
"dependencies": {
"graphql": "^15.0.0"
}
}