-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 864 Bytes
/
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
{
"name": "gatsby-source-contentful-locales",
"version": "0.0.3",
"main": "index.js",
"description": "Get the list of locales from a given space",
"repository": {
"type": "git",
"url": "https://github.com/joseguerrerov/gatsby-source-contentful-locales.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"contentful",
"locales"
],
"author": "Jose Guerrero",
"license": "MIT",
"scripts": {
"commit": "npx git-cz",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"semantic-release": "^17.1.1",
"semantic-release-slack-bot": "^1.6.2"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}