-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "graphql-add-middleware",
"version": "0.3.7",
"engines": {
"node": ">=6.0.0"
},
"description": "GraphQL middleware for schema resolvers",
"main": "dist/graphql-add-middleware.js",
"keywords": [
"graphql",
"middleware",
"resolver"
],
"scripts": {
"build-test": "npm run build && npm test",
"test": "./node_modules/.bin/mocha test-dist/test.js",
"build": "./node_modules/.bin/babel src --out-dir dist && ./node_modules/.bin/babel test --out-dir test-dist",
"preversion": "npm run build-test"
},
"repository": {
"type": "git",
"url": "https://github.com/alekbarszczewski/graphql-add-middleware"
},
"author": "Alek Barszczewski <[email protected]>",
"license": "MIT",
"dependencies": {
"koa-compose": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"esm": "^3.0.51",
"graphql-query-tree": "^0.3.0",
"mocha": "^3.2.0",
"graphql-tools": "4.0.7"
},
"peerDependencies": {
"graphql": "*"
}
}