UNPKG

2.03 kBJSONView Raw
1{
2 "name": "graphql-tools",
3 "version": "0.3.13",
4 "description": "A set of useful GraphQL tools",
5 "main": "dist/index.js",
6 "directories": {
7 "test": "test"
8 },
9 "scripts": {
10 "test": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter spec --full-trace test/index.js",
11 "lint": "eslint .",
12 "testonly": "mocha test/index.js",
13 "prepublish": "babel ./src --ignore test --out-dir ./dist"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/apollostack/graphql-tools.git"
18 },
19 "keywords": [
20 "GraphQL",
21 "Apollo",
22 "Meteor",
23 "Proxy",
24 "Cache",
25 "Javascript"
26 ],
27 "author": "Jonas Helfer <helfer@meteor.com>",
28 "license": "ISC",
29 "bugs": {
30 "url": "https://github.com/apollostack/apollo-proxy/issues"
31 },
32 "homepage": "https://github.com/apollostack/apollo-proxy#readme",
33 "dependencies": {
34 "babel-polyfill": "^6.5.0",
35 "express-graphql": "^0.5.1",
36 "fs": "0.0.2",
37 "graphql": "^0.5.0",
38 "lodash": "^4.10.0",
39 "node-uuid": "^1.4.7",
40 "performance-now": "^0.2.0"
41 },
42 "devDependencies": {
43 "babel-cli": "^6.6.5",
44 "babel-core": "6.3.21",
45 "babel-eslint": "^6.0.0-beta.6",
46 "babel-loader": "6.2.0",
47 "babel-preset-es2015": "^6.5.0",
48 "babel-preset-stage-0": "^6.5.0",
49 "body-parser": "^1.15.0",
50 "chai": "^3.5.0",
51 "dataloader": "^1.1.0",
52 "eslint": "^2.4.0",
53 "eslint-config-airbnb": "^6.1.0",
54 "eslint-plugin-import": "^1.1.0",
55 "express": "^4.13.4",
56 "express3": "0.0.0",
57 "istanbul": "1.0.0-alpha.2",
58 "mocha": "^2.3.3",
59 "multer": "^1.0.3",
60 "nodemon": "^1.9.1",
61 "request-promise": "^2.0.1",
62 "supertest": "^1.0.1",
63 "supertest-as-promised": "^2.0.2"
64 },
65 "eslintConfig": {
66 "parser": "babel-eslint",
67 "extends": [
68 "airbnb/base",
69 "plugin:import/errors"
70 ],
71 "rules": {
72 "no-use-before-define": 0,
73 "arrow-body-style": 0,
74 "dot-notation": 0,
75 "no-console": 0
76 },
77 "env": {
78 "mocha": true
79 }
80 }
81}