-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 991 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
39
{
"name": "gatsby-transformer-json-withimages",
"description": "Gatsby transformer plugin for JSON files with images",
"version": "1.0.0-beta",
"author": "Eloi Barti <me@eloibarti.com>",
"dependencies": {
"@babel/runtime": "^7.11.2",
"@types/lodash": "^4.14.165",
"bluebird": "^3.7.2",
"gatsby-source-filesystem": "^2.5.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"babel-preset-gatsby-package": "^0.7.0-next.0",
"cross-env": "^7.0.2",
"jest": "^26.6.3"
},
"homepage": "",
"keywords": [
"gatsby",
"gatsby-plugin",
"json",
"images"
],
"license": "MIT",
"peerDependencies": {
"gatsby": "^2.0.15"
},
"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__\"",
"test": "jest"
},
"engines": {
"node": ">=10.13.0"
}
}