-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "gatsby-source-etsy",
"version": "0.0.0-development",
"description": "Gatsby.js plugin that sources an Etsy shop's featured listings.",
"main": "index.js",
"scripts": {
"cz": "git-cz",
"fixtures:generate": "node generateFixtures",
"test": "jest --runInBand",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/dylanon/gatsby-source-etsy.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source",
"etsy"
],
"author": "Dylan On <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dylanon/gatsby-source-etsy/issues"
},
"dependencies": {
"bottleneck": "^2.19.5",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0",
"gatsby-source-filesystem": "^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=14.15.0"
},
"devDependencies": {
"faker": "^5.5.3",
"git-cz": "^3.3.0",
"jest": "^24.9.0",
"joi": "^17.6.0",
"nock": "^13.2.4",
"prettier": "1.18.2",
"semantic-release": "^18.0.1"
}
}