-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 KB
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
{
"name": "graphql-dataloader",
"version": "0.5.2",
"description": "Accelerate response by combining multiple GraphQL requests with Dataloader",
"main": "dist/main.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"lint": "eslint ./src/ ./test/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigMaster/graphql-dataloader.git"
},
"keywords": [
"graphql",
"request",
"merge",
"dataloader",
"extension",
"performance",
"combine"
],
"author": "BigMaster",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.3.1",
"apollo-server-env": "^2.2.0",
"babel-jest": "^24.1.0",
"dataloader": "^1.4.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-jest": "^22.2.2",
"graphql": "^14.4.2",
"graphql-request": "^1.8.2",
"jest": "^24.1.0",
"lodash-es": "^4.17.15",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"source-map-support": "^0.5.12"
},
"bugs": {
"url": "https://github.com/BigMaster/graphql-dataloader/issues"
},
"homepage": "https://github.com/BigMaster/graphql-dataloader#readme",
"peerDependencies": {
"graphql-extensions": "^0.5.0"
},
"files": [
"dist"
]
}