forked from mhallin/graphql-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "graphql-docs",
"version": "0.2.0",
"description": "Dynamic documentation for GraphQL endpoints",
"main": "dist/graphql-docs.js",
"author": "Magnus Hallin <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist/",
"lib/",
"README.rst",
"LICENSE"
],
"bin": {
"graphql-docs-gen": "lib/generator.js"
},
"scripts": {
"test": "echo 'No tests yet :-('",
"lint": "./node_modules/.bin/eslint src",
"flow": "./node_modules/.bin/flow check",
"prepublish": "./scripts/build.sh"
},
"keywords": [
"graphql",
"react",
"docs",
"documentation"
],
"homepage": "https://github.com/mhallin/graphql-docs",
"repository": {
"type": "git",
"url": "https://github.com/mhallin/graphql-docs.git"
},
"bugs": {
"url": "https://github.com/mhallin/graphql-docs/issues"
},
"engines": {
"node": ">= 4.4.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"marked": "^0.6.2",
"request": "^2.74.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-contracts": "^1.1.1",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-plugin-flowtype": "^2.4.0",
"eslint-plugin-react": "^6.2.2",
"expose-loader": "^0.7.1",
"flow-bin": "^0.32.0",
"postcss-cssnext": "^2.5.2",
"postcss-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
}
}