UNPKG

1.81 kBJSONView Raw
1{
2 "name": "graphql-config",
3 "version": "1.1.7",
4 "description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "files": [
8 "LICENSE",
9 "README.md",
10 "lib/"
11 ],
12 "scripts": {
13 "prepublish": "npm run build",
14 "clean": "rimraf lib",
15 "build": "npm run clean && tsc",
16 "copy-test-assets": "cpx \"src/**/{.graphqlconfig*,*.graphql,*.json}\" lib",
17 "test-only": "npm run build && npm run copy-test-assets && ava --verbose lib/__tests__/**/*.js --serial",
18 "test": "tslint src/**/*.ts && npm run test-only"
19 },
20 "ava": {
21 "babel": "inherit",
22 "require": [
23 "babel-register",
24 "babel-polyfill"
25 ]
26 },
27 "babel": {
28 "presets": [
29 "es2015",
30 "stage-0"
31 ]
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/graphcool/graphql-config.git"
36 },
37 "keywords": [
38 "graphql",
39 "config",
40 "relay",
41 "apollo"
42 ],
43 "author": "Johannes Schickling <johannes@graph.cool>",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/graphcool/graphql-config/issues"
47 },
48 "homepage": "https://github.com/graphcool/graphql-config#readme",
49 "devDependencies": {
50 "@types/graphql": "0.11.7",
51 "@types/node": "8.5.7",
52 "@types/node-fetch": "1.6.7",
53 "ava": "0.24.0",
54 "babel-polyfill": "6.26.0",
55 "babel-preset-es2015": "6.24.1",
56 "babel-preset-stage-0": "6.24.1",
57 "cpx": "1.5.0",
58 "rimraf": "2.6.2",
59 "tslint": "5.8.0",
60 "tslint-config-standard": "7.0.0",
61 "typescript": "2.6.2"
62 },
63 "dependencies": {
64 "graphql": "^0.12.3",
65 "graphql-import": "^0.4.0",
66 "graphql-request": "^1.4.0",
67 "js-yaml": "^3.10.0",
68 "minimatch": "^3.0.4"
69 }
70}