forked from kamilkisiela/graphql-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "graphql-config-parser",
"version": "1.1.3",
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
"main": "src/index.js",
"files": [
"LICENSE",
"README.md",
"src/"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "tslint {src,test}/**/*.ts && tsc && ava tests/**/test.js --serial"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-config.git"
},
"keywords": [
"graphql",
"config",
"relay",
"apollo"
],
"author": "Johannes Schickling <johannes@graph.cool>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-config/issues"
},
"homepage": "https://github.com/graphcool/graphql-config#readme",
"devDependencies": {
"@types/node": "^6.0.41",
"@types/node-fetch": "0.0.4",
"ava": "^0.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"tslint": "^3.15.1",
"tslint-config-standard": "^1.3.0",
"typescript": "^2.1.0-dev.20160805"
},
"dependencies": {
"graphql": "^0.7.1",
"node-fetch": "^1.6.3",
"valid-url": "^1.0.9"
}
}