-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 973 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
39
40
41
42
43
{
"name": "micro-graphql",
"version": "0.0.1",
"description": "Create a performant graphql server with micro and graphql-js",
"author": "Conner Petzold",
"repository": "cpetzold/micro-graphql",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"test": "ava --verbose",
"build": "babel -d dist src",
"prepublish": "npm run build"
},
"dependencies": {
"graphql": "^0.6.2"
},
"peerDependencies": {
"micro-core": "^0.4.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.11.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"node-fetch": "^1.6.0"
},
"ava": {
"require": ["babel-register"],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-async-to-generator"
]
}
}