-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 797 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 797 Bytes
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
{
"name": "gatsby-source-github-api",
"version": "1.0.0",
"description": "gatsby plugin for github v4 API",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ldd/gatsby-source-github.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **.js"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"github"
],
"author": "ldd <leonardoldd@gmail.com>",
"license": "MIT",
"dependencies": {
"graphql-fetch": "^1.0.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"prettier": "~1.16.4"
}
}