-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 892 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
32
33
34
35
36
37
38
{
"name": "koa-graphiql",
"version": "1.1.0",
"description": "Koa middleware to display GraphiQL",
"main": "lib/middleware.js",
"files": [
"lib"
],
"scripts": {
"build": "babel -d lib src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exponentjs/koa-graphiql.git"
},
"keywords": [
"koa",
"middleware",
"graphql",
"graphiql"
],
"engines": {
"node": ">=4"
},
"author": "James Ide",
"license": "MIT",
"bugs": {
"url": "https://github.com/exponentjs/koa-graphiql/issues"
},
"homepage": "https://github.com/exponentjs/koa-graphiql#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-plugin-syntax-flow": "^6.1.18",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-plugin-transform-flow-strip-types": "^6.1.18",
"babel-preset-stage-3": "^6.1.18"
}
}