-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "gatsby-plugin-sharp-exif",
"version": "2.0.0",
"description": "Gatsby Plugin to extract EXIF data from images, compatible with gatsby-plugin-sharp",
"main": "index.js",
"scripts": {
"develop": "babel -w src --out-dir . --ignore **/__tests__",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production yarn run build",
"test": "jest ./src"
},
"files": [
"/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thomasgassmann/gatsby-plugin-sharp-exif.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"exif"
],
"author": "thomasgassmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomasgassmann/gatsby-plugin-sharp-exif/issues"
},
"homepage": "https://github.com/thomasgassmann/gatsby-plugin-sharp-exif#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"babel-preset-gatsby-package": "^3.7.0",
"cross-env": "^7.0.3",
"jest": "^29.4.3",
"prettier": "^2.8.4"
},
"peerDependencies": {
"gatsby": "^5.0.0",
"gatsby-plugin-sharp": "^5.0.0"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"fast-exif": "^1.0.1"
}
}