-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "graphql-code-directive",
"version": "2.0.1",
"description": "Use a GraphQL Schema Directive to define Javascript logic, have that logic executed as a resolver.",
"main": "dist/index.js",
"scripts": {
"test": "cross-env mocha -r ts-node/register 'tests/**/*.ts'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/danstarns/graphql-code-directive"
},
"keywords": [
"graphql",
"code",
"directive"
],
"author": "danielstarns@hotmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/danstarns/graphql-code-directive/issues"
},
"homepage": "https://github.com/danstarns/graphql-code-directive#readme",
"devDependencies": {
"@graphql-tools/schema": "8.0.1",
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"chai": "4.2.0",
"cross-env": "7.0.3",
"eslint": "7.19.0",
"graphql": "15.0.0",
"mocha": "8.2.1",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"apollo-server": "2.19.2",
"apollo-server-testing": "2.19.2"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"dependencies": {
"@graphql-tools/utils": "^7.10.0"
}
}