-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fill out more fields in package.json
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"description": "Dynamic documentation for GraphQL endpoints", | ||
"main": "dist/graphql-docs.js", | ||
"author": "Magnus Hallin <[email protected]>", | ||
"license": "MIT", | ||
"license": "SEE LICENSE IN LICENSE", | ||
"files": [ | ||
"dist/", | ||
"src/", | ||
|
@@ -16,6 +16,18 @@ | |
"lint": "./node_modules/.bin/eslint src", | ||
"flow": "./node_modules/.bin/flow check" | ||
}, | ||
"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": "^15.0.1", | ||
"react-dom": "^15.0.1" | ||
|