-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "graphql-transform-schema",
"version": "0.1.0",
"description": "Transform, filter & alias resolvers of a GraphQL schema",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf lib && tsc",
"test": "npm run build && ava lib/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-schema-transform.git"
},
"keywords": [
"graphql",
"schema",
"resolver",
"graphcool"
],
"author": "Johannes Schickling <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-schema-transform/issues"
},
"homepage": "https://github.com/graphcool/graphql-schema-transform#readme",
"dependencies": {
"graphql": "^0.11.2",
"lodash": "^4.17.4",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@types/graphql": "^0.11.0",
"@types/lodash": "^4.14.80",
"@types/minimatch": "^3.0.1",
"ava": "^0.23.0",
"graphql-tools": "^2.6.1",
"typescript": "^2.5.2"
}
}