-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "@clipchamp/gatsby-plugin-seo-export",
"version": "1.2.0",
"description": "A GatsbyJS plugin to export SEO information to a CSV",
"main": "index.js",
"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__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clipchamp/gatsby-plugin-seo-export.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"seo",
"export",
"csv"
],
"author": "@clipchamp",
"license": "MIT",
"bugs": {
"url": "https://github.com/clipchamp/gatsby-plugin-seo-export/issues"
},
"homepage": "https://github.com/clipchamp/gatsby-plugin-seo-export#readme",
"dependencies": {
"@babel/runtime": "^7.15.4",
"cheerio": "^1.0.0-rc.2",
"convert-array-to-csv": "^2.0.0",
"fs-extra": "^10.0.0",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"gatsby": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^1.13.0",
"cross-env": "^7.0.3"
}
}