-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 951 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
{
"name": "gatsby-source-cat-facts",
"description": "Gatsby source plugin to add Cat Facts to your app.",
"version": "0.0.2",
"author": "Connor Wilson <[email protected]> (https://cwlsn.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"node-fetch": "^2.2.1"
},
"keywords": [
"gatsby",
"gatsby-source",
"gatsby-plugin",
"cat facts"
],
"repository": {
"type": "git",
"url": "https://github.com/cwlsn/gatsby-source-cat-facts.git"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"babel-preset-gatsby-package": "^0.1.2",
"cross-env": "^5.2.0"
},
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./",
"watch": "babel -w src --out-dir .",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
}
}