forked from graphql/express-graphql
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "express-graphql",
"version": "0.2.0",
"description": "Create a GraphQL HTTP server with Express.",
"contributors": [
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)",
"Daniel Schafer <dschafer@fb.com>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/graphql/express-graphql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/express-graphql.git"
},
"keywords": [
"express",
"graphql",
"middleware",
"api"
],
"main": "dist/index.js",
"directories": {
"lib": "./dist"
},
"files": [
"dist",
"README.md",
"LICENSE",
"PATENTS"
],
"options": {
"mocha": "--require resources/mocha-bootload src/**/__tests__/**/*.js"
},
"scripts": {
"prepublish": ". ./resources/prepublish.sh",
"test": "npm run lint && npm run check && npm run testonly",
"testonly": "mocha $npm_package_options_mocha",
"lint": "eslint src",
"check": "flow check",
"build": "rm -rf dist/* && babel src --ignore __tests__ --out-dir dist",
"watch": "babel --optional runtime resources/watch.js | node",
"cover": "babel-node node_modules/.bin/isparta cover --root src --report html node_modules/.bin/_mocha -- $npm_package_options_mocha",
"cover:lcov": "babel-node node_modules/.bin/isparta cover --root src --report lcovonly node_modules/.bin/_mocha -- $npm_package_options_mocha",
"preversion": "npm test"
},
"dependencies": {
"content-type": "~1.0.1",
"http-errors": "~1.3.1",
"raw-body": "~2.1.2"
},
"peerDependencies": {
"graphql": "~0.3.0"
},
"devDependencies": {
"babel": "5.8.21",
"babel-core": "5.8.22",
"babel-eslint": "4.0.5",
"babel-runtime": "5.8.20",
"chai": "3.2.0",
"coveralls": "2.11.3",
"eslint": "1.1.0",
"express": "4.0.0",
"express3": "*",
"flow-bin": "0.14.0",
"graphql": "0.3.0",
"isparta": "3.0.3",
"mocha": "2.2.5",
"multer": "1.0.3",
"sane": "1.1.3",
"supertest": "1.0.1",
"supertest-as-promised": "2.0.2"
}
}