-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1020 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
38
39
40
41
42
43
44
45
46
{
"name": "gatsby-source-google-mymaps",
"version": "1.0.0",
"description": "Gatsby plugin to use Google MyMaps as a data source",
"repository": "https://github.com/cedricdelpoux/gatsby-source-google-mymaps",
"author": {
"name": "Cédric Delpoux",
"email": "cedric.delpoux@gmail.com"
},
"license": "MIT",
"private": false,
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source",
"gatsby-source-plugin",
"google",
"google-mymaps",
"mymaps",
"maps"
],
"main": "index.js",
"files": [
"gatsby-node.js"
],
"dependencies": {
"fast-xml-parser": "^3.21.1",
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0"
},
"scripts": {
"lint": "eslint gatsby-node.js"
}
}