-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "gatsby-plugin-categories",
"description": "Gatsby plugin to automatically create index pages for categories of content",
"version": "2.3.7",
"author": "Rob Mcfadzean <[email protected]>",
"keywords": [
"gatsby",
"gatsby-plugin",
"tags"
],
"license": "MIT",
"main": "index.js",
"files": [
"/*.js"
],
"peerDependencies": {
"gatsby": ">2.0.0-beta"
},
"scripts": {
"build": "babel src --out-dir . --ignore '*/**/__tests__/'",
"watch": "babel -w src --out-dir . --ignore '*/**/__tests__/'",
"prepare": "cross-env NODE_ENV=production npm run build",
"test": "jest"
},
"bugs": {
"url": "https://github.com/rmcfadzean/gatsby-pantry/issues"
},
"homepage": "https://github.com/rmcfadzean/gatsby-pantry/tree/master/packages/gatsby-plugin-categories#readme",
"repository": {
"type": "git",
"url": "https://github.com/rmcfadzean/gatsby-pantry/tree/master/packages/gatsby-plugin-categories"
},
"dependencies": {
"lodash": "^4.17.15",
"slug": "^1.1.0"
}
}