forked from AndreasFaust/gatsby-source-custom-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 1.27 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
{
"name": "gatsby-source-custom-api",
"version": "2.1.4",
"description": "Source data from any API and transform it into Gatsby-nodes. Download your image files and use them with Gatsby Image.",
"main": "index.js",
"author": "Andreas Faust",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/AndreasFaust/gatsby-source-custom-api"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"source",
"api",
"json",
"image",
"cache"
],
"scripts": {
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"dependencies": {
"gatsby-source-filesystem": "^2.0.29",
"node-fetch": "^2.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"generate-changelog": "^1.7.1"
}
}