-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "gatsby-source-meetup",
"version": "1.1.0",
"description": "Gatsby source plugin for building websites using the Meetup.com API as a data source",
"bugs": {
"url": "https://github.com/phacks/gatsby-source-meetup/issues"
},
"homepage": "https://github.com/phacks/gatsby-source-meetup/tree/master#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"meetup",
"meetup.com"
],
"license": "MIT",
"repository": "https://github.com/phacks/gatsby-source-meetup",
"scripts": {
"build": "babel src --out-dir . --ignore \"__tests__,**/*.test.js\"",
"prepublish": "yarn build",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__,**/*.test.js\"",
"test": "jest --coverage"
},
"author": "Nicolas Goutay <[email protected]>",
"dependencies": {
"node-fetch": "^2.2.1",
"query-string": "^6.2.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"@types/jest": "^24.0.25",
"cross-env": "^5.1.3",
"jest": "^24.9.0"
},
"peerDependencies": {
"gatsby": ">= 2.12.0"
}
}