This repository has been archived by the owner on Jul 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "typeorm-loader",
"version": "0.0.1-0.5",
"description": "A database-aware data-loader for use with GraphQL and TypeORM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run test",
"build": "tsc",
"test": "npm run build && [ -d tests ] && NODE_ENV=test mocha $NODE_DEBUG_OPTION -r ts-node/register -r tslib tests/test_**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webtomizer/typeorm-loader.git"
},
"keywords": [
"typeorm",
"database",
"graphql",
"data",
"loader",
"batching",
"caching"
],
"author": "Abdullah Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/Webtomizer/typeorm-loader/issues"
},
"homepage": "https://github.com/Webtomizer/typeorm-loader#readme",
"dependencies": {
"deep-equal": "^1.0.1",
"object-path": "^0.11.4",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chance": "^1.0.1",
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"@types/object-path": "^0.9.29",
"chai": "^4.2.0",
"chance": "^1.0.16",
"graphql": "^14.0.2",
"metanoia": "^1.0.1",
"mocha": "^5.2.0",
"sqlite3": "^4.0.3",
"ts-node": "^7.0.1",
"typeorm": "^0.2.8",
"typescript": "^3.1.3"
},
"peerDependencies": {
"typeorm": ">=0.2.8"
},
"optionalDependencies": {
"@types/graphql": "^14.0.3"
}
}