-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
39 lines (39 loc) · 913 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
{
"name": "graphql-fields",
"version": "2.0.3",
"description": "Turns GraphQLResolveInfo into a map of the requested fields",
"main": "build/index.js",
"scripts": {
"test": "mocha",
"build": "babel index.js --out-dir build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robrichard/graphql-fields.git"
},
"keywords": [
"graphql",
"graphql-js",
"graphqlresolveinfo",
"fields",
"schema",
"ast"
],
"files": [
"build/*"
],
"author": "Rob Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/robrichard/graphql-fields/issues"
},
"homepage": "https://github.com/robrichard/graphql-fields#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.1.0",
"graphql": "^15.0.0",
"mocha": "^9.1.1"
}
}