-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 838 Bytes
/
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
{
"name": "koa-graphql-batch",
"version": "1.1.0",
"description": "Koa middleware to support query batching for react-relay-network-layer",
"main": "lib/index.js",
"repository": "https://github.com/mattecapu/koa-graphql-batch",
"author": "Matteo Capucci <[email protected]>",
"license": "MIT",
"keywords": [
"koa",
"graphql",
"relay",
"react-relay-network-layer",
"query batching"
],
"scripts": {
"build": "babel --retain-lines src -d lib",
"version": "npm run build",
"postversion": "git push --follow-tags && npm publish"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0"
},
"peerDependencies": {
"graphql": "^0.8.2",
"koa": "^2.0.0",
"koa-graphql": "^0.6.0"
}
}