-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
63 lines (63 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hapi-graphql",
"version": "1.0.1",
"description": "Create a GraphQL HTTP server with Hapi.",
"author": "Simon Degraeve <[email protected]>",
"main": "./lib/index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonDegraeve/hapi-graphql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/SimonDegraeve/hapi-graphql.git"
},
"keywords": [
"hapi",
"graphql"
],
"scripts": {
"test": "eslint src",
"prepublish": "rm -rf lib/* && babel src --out-dir lib"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-runtime": "^6.9.2",
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"graphql": "^0.6.0",
"hapi": "^13.5.0"
},
"dependencies": {
"accepts": "^1.3.3",
"babel-runtime": "^6.9.2",
"boom": "^3.2.2",
"joi": "^8.4.2"
},
"peerDependencies": {
"babel-runtime": "^6.9.2",
"graphql": "^0.6.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb-base"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports",
"transform-runtime"
]
}
}