forked from Mando75/typeorm-graphql-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@mando75/typeorm-graphql-loader",
"version": "1.0.0",
"description": "A dataloader which intelligently selects/joins the fields/relations from your TypeORM entities needed to resolve a GraphQL query",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "yarn build",
"build": "tsc --declaration",
"publish:docs": "typedoc --options typedoc.json",
"lint": "eslint 'src/**/*.ts'",
"test": "yarn build && nyc mocha -r ts-node/register -r tslib -r source-map-support/register --full-trace src/__tests__/**/*.test.ts --timeout 5000"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"tslib"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://gitlab.com/Mando75/typeorm-graphql-loader"
},
"keywords": [
"typeorm",
"database",
"graphql",
"data",
"apollo",
"loader",
"batching",
"caching",
"resolvers",
"dataloader"
],
"author": "Bryan Muller",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/Mando75/typeorm-graphql-loader/issues"
},
"homepage": "https://gitlab.com/Mando75/typeorm-graphql-loader",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chance": "^1.0.7",
"@types/deep-equal": "^1.0.1",
"@types/faker": "^4.1.11",
"@types/graphql": "^14.5.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.13.2",
"@types/object-path": "^0.11.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"chai": "^4.2.0",
"chai-things": "^0.2.0",
"chance": "^1.1.3",
"deep-equal-in-any-order": "^1.0.21",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"graphql": "^14.5.8",
"metanoia": "^1.0.1",
"mocha": "^7.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "13",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.19",
"sqlite3": "^4.1.0",
"ts-node": "^8.9.0",
"tslib": "^1.10.0",
"type-graphql": "^0.17.6",
"typedoc": "^0.17.3",
"typeorm": "^0.2.19",
"typescript": "^3.6.4"
},
"peerDependencies": {
"graphql": "^14.5.8",
"typeorm": ">=0.2.8"
}
}