-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "gatsby-source-google-places",
"description": "Gatsby source plugin for the Google places API",
"author": "Franklin Tarter <[email protected]>",
"bugs": {
"url": "https://github.com/franklintarter/gatsby-source-google-places/issues"
},
"main": "index.js",
"version": "1.0.3",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-plugin-source",
"google-places",
"google-places-api"
],
"homepage": "https://github.com/franklintarter/gatsby-source-google-places",
"dependencies": {
"axios": "^0.28.0",
"gatsby-node-helpers": "^0.3.0",
"querystring": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.2.2",
"cross-env": "^5.1.4"
},
"peerDependencies": {
"gatsby": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/franklintarter/gatsby-source-google-places.git"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
}
}