UNPKG

1.89 kBJSONView Raw
1{
2 "name": "graphql-tools",
3 "version": "0.2.6",
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 "casual-browserify": "^1.5.2",
36 "fs": "0.0.2",
37 "graphql": "^0.5.0",
38 "node-uuid": "^1.4.7",
39 "performance-now": "^0.2.0"
40 },
41 "devDependencies": {
42 "babel-cli": "^6.6.5",
43 "babel-core": "6.3.21",
44 "babel-eslint": "^6.0.0-beta.6",
45 "babel-loader": "6.2.0",
46 "babel-preset-es2015": "^6.5.0",
47 "babel-preset-stage-0": "^6.5.0",
48 "chai": "^3.5.0",
49 "dataloader": "^1.1.0",
50 "eslint": "^2.4.0",
51 "eslint-config-airbnb": "^6.1.0",
52 "eslint-plugin-import": "^1.1.0",
53 "express": "^4.13.4",
54 "istanbul": "1.0.0-alpha.2",
55 "lodash": "^4.7.0",
56 "mocha": "^2.3.3",
57 "nodemon": "^1.9.1",
58 "request-promise": "^2.0.1"
59 },
60 "eslintConfig": {
61 "parser": "babel-eslint",
62 "extends": [
63 "airbnb/base",
64 "plugin:import/errors"
65 ],
66 "rules": {
67 "no-use-before-define": 0,
68 "arrow-body-style": 0,
69 "dot-notation": 0,
70 "no-console": 0
71 },
72 "env": {
73 "mocha": true
74 }
75 }
76}