-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
45
46
47
48
49
50
51
52
{
"name": "gatsby-plugin-csv-feed",
"version": "4.0.1",
"description": "Gatsby plugin for creating CSV feeds.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"test": "jest",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\""
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"joi": "^17.4.2",
"fs-extra": "^10.0.0",
"json2csv": "^5.0.6"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"babel-preset-gatsby-package": "^2.0.0",
"cross-env": "^7.0.3",
"jest": "^24.9.0"
},
"peerDependencies": {
"gatsby": "^4.0.0-next"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"csv",
"tsv",
"data",
"feed",
"google",
"ads",
"adwords"
],
"author": {
"name": "Austin Gordon",
"email": "gordon.austin2@gmail.com",
"url": "https://github.com/AustinLeeGordon"
},
"license": "MIT",
"engines": {
"node": ">=14.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hutsoninc/gatsby-plugin-csv-feed"
}
}